Lines Matching defs:hash
123 long hash;
125 hash = calchash(key);
127 blkno = hash & hmask;
261 long hash;
268 hash = calchash(key);
269 dbm_access(hash);
284 hash = hashinc(hash);
285 if (hash == 0)
287 return (firsthash(hash));
291 firsthash(long hash)
297 dbm_access(hash);
308 hash = hashinc(hash);
309 if (hash == 0)
315 dbm_access(long hash)
320 blkno = hash & hmask;
465 hashinc(long hash)
469 hash &= hmask;
475 if ((hash&bit) == 0)
476 return (hash|bit);
477 hash &= ~bit;