| 31 | } |
| 32 | |
| 33 | UInt128 CityHash128(const void *s, size_t len) { |
| 34 | return u2U(::CityHash128(static_cast<const char*>(s), len)); |
| 35 | } |
| 36 | |
| 37 | UInt128 CityHash128WithSeed(const void *s, size_t len, UInt128 seed) { |
| 38 | return u2U(::CityHash128WithSeed(static_cast<const char*>(s), len, U2u(seed))); |