| 22 | } |
| 23 | |
| 24 | uint64_t CityHash64WithSeed(const void *buf, size_t len, uint64_t seed) { |
| 25 | return ::CityHash64WithSeed(static_cast<const char*>(buf), len, seed); |
| 26 | } |
| 27 | |
| 28 | uint64_t CityHash64WithSeeds(const void *buf, size_t len, |
| 29 | uint64_t seed0, uint64_t seed1) { |
nothing calls this directly
no outgoing calls
no test coverage detected