Lines Matching defs:hash
224 Word *hash, *chain;
769 * If there's no hash table there's nothing else to process.
960 * If we've in verbose mode scan the hash list.
963 hash = (Word *)(CAST_PTRINT(char *, head->ch_hash) + addr);
964 bkts = hash[0];
965 chain = &hash[2 + bkts];
966 hash += 2;
971 * Scan the hash buckets looking for valid entries.
973 for (ndx = 0; ndx < bkts; ndx++, hash++) {
979 if (*hash == NULL)
982 obj = objtbl + *hash;
992 for (_ndx = chain[*hash]; _ndx; _ndx = chain[_ndx]) {