Home
last modified time | relevance | path

Searched refs:Hash64WithSeed (Results 1 – 2 of 2) sorted by relevance

/external/libtextclassifier/util/hash/
Dfarmhash.h78 uint64_t Hash64WithSeed(const char* s, size_t len, uint64_t seed);
202 inline uint64_t Hash64WithSeed(const Str& s, uint64_t seed) { in Hash64WithSeed() function
204 return Hash64WithSeed(s.data(), s.length(), seed); in Hash64WithSeed()
Dfarmhash.cc518 uint64_t Hash64WithSeed(const char *s, size_t len, uint64_t seed) { in Hash64WithSeed() function
886 static_cast<uint32_t>(farmhashna::Hash64WithSeed(s, len, seed)) :
1464 uint64_t Hash64WithSeed(const char* s, size_t len, uint64_t seed) { in Hash64WithSeed() function
1465 return DebugTweak(farmhashna::Hash64WithSeed(s, len, seed)); in Hash64WithSeed()
5215 …ive(h >> 32); IsAlive((h << 32) >> 32); } { uint64_t h = farmhashna::Hash64WithSeed(data, len++, S… in Test()
5217 { uint64_t h = farmhashna::Hash64WithSeed(data + offset, len, SEED); Check(h >> 32); Check((h << 32… in Test()
5251 { uint64_t h = farmhashna::Hash64WithSeed(data + offset, len, SEED); cout << (h >> 32) << "u, " << … in Dump()