| 89 | uint64_t seed = DAS_WYHASH_SEED; |
| 90 | public: |
| 91 | __forceinline uint64_t getHash() { |
| 92 | return seed <= HASH_KILLED64 ? UINT64_C(1099511628211) : seed; |
| 93 | } |
| 94 | __forceinline void updateString ( const char * str ) { |
| 95 | if (!str) str = ""; |
| 96 | seed = wyhash((const uint8_t *)str, strlen(str), seed); |
no outgoing calls
no test coverage detected