uncrustify source code
This commit is contained in:
parent
ca15f19709
commit
8141a18cab
14 changed files with 1610 additions and 27 deletions
2
bloom.c
2
bloom.c
|
@ -77,7 +77,7 @@ uint32_t Murmur3_32(uint8_t * key, size_t len, uint32_t seed) {
|
|||
// by the modulo arithmetic under overflow. We don't want that.
|
||||
remainingbytes = remainingbytes * c1;
|
||||
remainingbytes =
|
||||
(remainingbytes << r1) | (remainingbytes >> (32 - r1));
|
||||
(remainingbytes << r1) | (remainingbytes >> (32 - r1));
|
||||
remainingbytes = remainingbytes * c2;
|
||||
|
||||
hash = hash ^ remainingbytes;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue