Home | History | Annotate | Download | only in ksmutils

Lines Matching defs:hashword

6 hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final() 
26 4-byte integers to hash, use hashword(). If you have a byte array (like
167 The function hashword() is identical to hashlittle() on little-endian
170 bytes. hashlittle() is more complicated than hashword() only because
174 uint32_t hashword(
212 hashword2() -- same as hashword(), but take two seeds and return two
215 (*pc) will be the same as the return value from hashword().
641 * This is the same as hashword() on big-endian machines. It is different
879 hashword((const uint32_t *)q, (sizeof(q)-1)/4, 13),
880 hashword((const uint32_t *)q, (sizeof(q)-5)/4, 13),
881 hashword((const uint32_t *)q, (sizeof(q)-9)/4, 13));
922 /* check that hashword2 and hashword produce the same results */
926 if (hashword(&len, 1, 47) != i)
927 printf("hashword2 and hashword mismatch %x %x\n",
928 i, hashword(&len, 1, 47));