| 489 | } |
| 490 | |
| 491 | uint128 CityHash128(const char *s, size_t len) { |
| 492 | return len >= 16 ? |
| 493 | CityHash128WithSeed(s + 16, len - 16, |
| 494 | uint128(Fetch64(s), Fetch64(s + 8) + k0)) : |
| 495 | CityHash128WithSeed(s, len, uint128(k0, k1)); |
| 496 | } |
| 497 | |
| 498 | #ifdef __SSE4_2__ |
| 499 | #include "citycrc.h" |
no test coverage detected