MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / CityHashCrc256

Function CityHashCrc256

extern/libcds/test/stress/framework/city.cpp:599–605  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

597}
598
599void 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
607uint128 CityHashCrc128WithSeed(const char *s, size_t len, uint128 seed) {
608 if (len <= 900) {

Callers 2

CityHashCrc128WithSeedFunction · 0.85
CityHashCrc128Function · 0.85

Calls 2

CityHashCrc256LongFunction · 0.85
CityHashCrc256ShortFunction · 0.85

Tested by

no test coverage detected