Lines Matching defs:hash
127 long hash;
129 hash = calchash(key);
131 blkno = hash & hmask;
265 long hash;
272 hash = calchash(key);
273 dbm_access(hash);
288 hash = hashinc(hash);
289 if (hash == 0)
291 return (firsthash(hash));
295 firsthash(long hash)
301 dbm_access(hash);
312 hash = hashinc(hash);
313 if (hash == 0)
319 dbm_access(long hash)
324 blkno = hash & hmask;
469 hashinc(long hash)
473 hash &= hmask;
479 if ((hash&bit) == 0)
480 return (hash|bit);
481 hash &= ~bit;