| 505 | #include "Hash_murmur.h" |
| 506 | |
| 507 | uintptr_t UArray_superfastHash(UArray *self) { |
| 508 | return SuperFastHash((char *)(self->data), (int)UArray_sizeInBytes(self)); |
| 509 | } |
| 510 | |
| 511 | uintptr_t UArray_fnvHash(UArray *self) { |
| 512 | return (uintptr_t)fnv_32_buf((void *)(self->data), UArray_sizeInBytes(self), |
no test coverage detected