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

MurmurHash: Difference between revisions

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