Lines Matching defs:hash
89 * Currently used for the del_recall_lru and file hash table. In an
539 /* hash tables for lock and open owners */
552 /* hash table for nfs4_file */
873 * Each filter is 256 bits. We hash the filehandle to 32bit and use the
874 * low 3 bytes as hash-table indices.
890 u32 hash;
907 hash = jhash(&fh->fh_base, fh->fh_size, 0);
908 if (test_bit(hash&255, bd->set[0]) &&
909 test_bit((hash>>8)&255, bd->set[0]) &&
910 test_bit((hash>>16)&255, bd->set[0]))
913 if (test_bit(hash&255, bd->set[1]) &&
914 test_bit((hash>>8)&255, bd->set[1]) &&
915 test_bit((hash>>16)&255, bd->set[1]))
923 u32 hash;
926 hash = jhash(&fh->fh_base, fh->fh_size, 0);
929 __set_bit(hash&255, bd->set[bd->new]);
930 __set_bit((hash>>8)&255, bd->set[bd->new]);
931 __set_bit((hash>>16)&255, bd->set[bd->new]);