MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / hash_uint64

Function hash_uint64

include/daScript/misc/anyhash.h:83–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81 }
82
83 static __forceinline uint64_t hash_uint64 ( uint64_t value ) { // this is simplified, and not the same as wyhash(&value,4)
84 auto h = _wymix(value, DAS_WYHASH_SEED);
85 return h <= HASH_KILLED64 ? UINT64_C(1099511628211) : h;
86 }
87
88 class HashBuilder {
89 uint64_t seed = DAS_WYHASH_SEED;

Callers 1

hash_functionFunction · 0.85

Calls 1

_wymixFunction · 0.85

Tested by

no test coverage detected