HomeSort by relevance Sort by last modified time
    Searched refs:SpookyHash (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/smhasher/src/
SpookyTest.cpp 4 *(uint32_t*)out = SpookyHash::Hash32(key, len, seed);
8 *(uint64_t*)out = SpookyHash::Hash64(key, len, seed);
13 SpookyHash::Hash128(key, len, &h1, &h2);
Spooky.cpp 17 void SpookyHash::Short(
123 void SpookyHash::Hash128(
188 void SpookyHash::Init(uint64 seed1, uint64 seed2)
198 void SpookyHash::Update(const void *message, size_t length)
302 void SpookyHash::Final(uint64 *hash1, uint64 *hash2)
Spooky.h 2 // SpookyHash: a 128-bit noncryptographic hash function
4 // Oct 31 2010: alpha, framework + SpookyHash::Mix appears right
19 // Google's CityHash has similar specs to SpookyHash, and CityHash is faster
22 // SpookyHash, they have nice math for combining the CRCs of pieces to form
46 class SpookyHash
50 // SpookyHash: hash a single message in one call, produce 128-bit output
85 // Init: initialize the context of a SpookyHash
92 // Update: add a piece of a message to a SpookyHash state
100 // Final: compute the hash for the current SpookyHash state
104 // The result is the same as if SpookyHash() had been called wit
    [all...]

Completed in 503 milliseconds