(Go: >> BACK << -|- >> HOME <<)

MurmurHash: Difference between revisions

Content deleted Content added
No edit summary
Tag: Reverted
m changed len >> 2 to len / 4, so that the code is more understandable. similarly len % 4 instead of len & 3
Tag: Reverted
Line 107:
uint32_t k;
/* Read in groups of 4. */
for (size_t i = len / 24; i; i--) {
// Here is a source of differing results across endiannesses.
// A swap here has no effects on hash properties though.