Lines Matching defs:hashword
19 hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
39 4-byte integers to hash, use hashword(). If you have a byte array (like
225 The function hashword() is identical to hashlittle() on little-endian
228 bytes. hashlittle() is more complicated than hashword() only because
232 uint32_t hashword(
278 hashword2() -- same as hashword(), but take two seeds and return two
281 (*pc) will be the same as the return value from hashword().
817 * This is the same as hashword() on big-endian machines. It is different
1096 hashword((const uint32_t *)q, (sizeof(q)-1)/4, 13),
1097 hashword((const uint32_t *)q, (sizeof(q)-5)/4, 13),
1098 hashword((const uint32_t *)q, (sizeof(q)-9)/4, 13));
1139 /* check that hashword2 and hashword produce the same results */
1143 if (hashword(&len, 1, 47) != i)
1144 printf("hashword2 and hashword mismatch %x %x\n",
1145 i, hashword(&len, 1, 47));