| 389 | } |
| 390 | |
| 391 | uint64 CityHash64WithSeeds(const char *s, size_t len, |
| 392 | uint64 seed0, uint64 seed1) { |
| 393 | return HashLen16(CityHash64(s, len) - seed0, seed1); |
| 394 | } |
| 395 | |
| 396 | // A subroutine for CityHash128(). Returns a decent 128-bit hash for strings |
| 397 | // of any length representable in signed long. Based on City and Murmur. |
no test coverage detected