MCPcopy Create free account
hub / github.com/chen3feng/toft / CityHash128

Function CityHash128

hash/city.cpp:33–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33UInt128 CityHash128(const void *s, size_t len) {
34 return u2U(::CityHash128(static_cast<const char*>(s), len));
35}
36
37UInt128 CityHash128WithSeed(const void *s, size_t len, UInt128 seed) {
38 return u2U(::CityHash128WithSeed(static_cast<const char*>(s), len, U2u(seed)));

Callers

nothing calls this directly

Calls 1

u2UFunction · 0.85

Tested by

no test coverage detected