| 509 | } |
| 510 | |
| 511 | uintptr_t UArray_fnvHash(UArray *self) { |
| 512 | return (uintptr_t)fnv_32_buf((void *)(self->data), UArray_sizeInBytes(self), |
| 513 | FNV1_32_INIT) |
| 514 | << 1; // ensures odd result |
| 515 | } |
| 516 | |
| 517 | uintptr_t UArray_murmurHash(UArray *self) { |
| 518 | return (uintptr_t)MurmurHash2((const void *)(self->data), |
no test coverage detected