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.
| 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_; |
no outgoing calls
no test coverage detected