| 597 | } |
| 598 | |
| 599 | void CityHashCrc256(const char *s, size_t len, uint64 *result) { |
| 600 | if (LIKELY(len >= 240)) { |
| 601 | CityHashCrc256Long(s, len, 0, result); |
| 602 | } else { |
| 603 | CityHashCrc256Short(s, len, result); |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | uint128 CityHashCrc128WithSeed(const char *s, size_t len, uint128 seed) { |
| 608 | if (len <= 900) { |
no test coverage detected