MCPcopy Create free account
hub / github.com/apache/impala / MixHash

Method MixHash

be/src/kudu/util/bloom_filter.h:92–95  ·  view source on GitHub ↗

Mix the given hash function with the second calculated hash value. A sequence of independent hashes can be calculated by repeatedly calling MixHash() on its previous result.

Source from the content-addressed store, hash-verified

90 // value. A sequence of independent hashes can be calculated
91 // by repeatedly calling MixHash() on its previous result.
92 ATTRIBUTE_NO_SANITIZE_INTEGER
93 uint32_t MixHash(uint32_t h) const {
94 return h + h_2_;
95 }
96
97 private:
98 Slice key_;

Callers 2

AddKeyMethod · 0.80
MayContainKeyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected