Lines Matching refs:h64
60 * Test the various integer hash functions. h64 (or its low-order bits)
69 test_int_hash(unsigned long long h64, u32 hash_or[2][33])
72 u32 h0 = (u32)h64, h1, h2;
114 hash_or[1][k] |= h1 = hash_64(h64, k);
116 pr_err("hash_64(%#llx, %d) = %#x > %#x", h64, k, h1, m);
120 h2 = hash_64_generic(h64, k);
124 "= %#x", h64, k, h1, h2);
130 h64, k, h1, m);
149 unsigned long long h64 = 0;
178 h64 = h64 << 32 | h0; /* For use with hash_64 */
179 if (!test_int_hash(h64, hash_or))