| 385 | } |
| 386 | |
| 387 | uint64 CityHash64WithSeed(const char *s, size_t len, uint64 seed) { |
| 388 | return CityHash64WithSeeds(s, len, k2, seed); |
| 389 | } |
| 390 | |
| 391 | uint64 CityHash64WithSeeds(const char *s, size_t len, |
| 392 | uint64 seed0, uint64 seed1) { |
nothing calls this directly
no test coverage detected