Lines Matching refs:uint32_t
38 inline uint64_t NPHash64(const char* data, size_t n, uint32_t seed) { in NPHash64()
52 extern uint32_t Hash(const char* data, size_t n, uint32_t seed);
55 inline uint32_t BloomHash(const Slice& key) { in BloomHash()
68 inline uint32_t GetSliceHash(const Slice& s) { in GetSliceHash()
73 inline uint32_t Upper32of64(uint64_t v) { in Upper32of64()
74 return static_cast<uint32_t>(v >> 32); in Upper32of64()
76 inline uint32_t Lower32of64(uint64_t v) { return static_cast<uint32_t>(v); } in Lower32of64()
81 uint32_t operator()(const Slice& s) const { return GetSliceHash(s); } in operator()
86 inline uint32_t fastrange32(uint32_t hash, uint32_t range) { in fastrange32()
88 return static_cast<uint32_t>(product >> 32); in fastrange32()
112 tmp += static_cast<uint32_t>(tmp2); in fastrange64()