| 515 | } |
| 516 | |
| 517 | uintptr_t UArray_murmurHash(UArray *self) { |
| 518 | return (uintptr_t)MurmurHash2((const void *)(self->data), |
| 519 | (int)UArray_sizeInBytes(self), 0); |
| 520 | } |
| 521 | |
| 522 | // even/odd hashes for cuckoo hashtables |
| 523 |
nothing calls this directly
no test coverage detected