MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/Falcor / fnvHashArray64

Function fnvHashArray64

Source/Falcor/Utils/Math/FNVHash.h:128–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126using FNVHash32 = FNVHash<uint32_t>;
127
128inline uint64_t fnvHashArray64(const void* data, size_t size)
129{
130 FNVHash64 hash;
131 hash.insert(data, size);
132 return hash.get();
133}
134
135inline uint32_t fnvHashArray32(const void* data, size_t size)
136{

Callers 2

hash64Function · 0.85
operator()Method · 0.85

Calls 2

insertMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected