Lines Matching defs:hash
248 * Check if we have this node in the hash table already
253 int hash = HASH(h);
254 struct tdesc *tdp = hash_table[hash];
259 tdp = tdp->hash;
597 * find the tdesc struct in the hash table for this type
601 if (tdp == NULL) { /* not in hash list */
712 * Add a node to the hash queues.
717 int hash = HASH(num);
722 * If it already exists in the hash table don't add it again
728 tdp->hash = hash_table[hash];
729 hash_table[hash] = tdp;
736 hash = compute_sum(tdp->name);
737 tdp->next = name_table[hash];
738 name_table[hash] = tdp;
743 fprintf(stderr, "stabs: broken hash\n");
751 int hash = compute_sum(name);
754 for (tdp = name_table[hash]; tdp != NULL; tdp = tdp->next) {