FastLED 3.9.15
Loading...
Searching...
No Matches

◆ fast_hash64()

static u32 fl::fast_hash64 ( u64 x)
inlinestatic

Definition at line 98 of file hash.h.

98 {
99 u32 x1 = static_cast<u32>(x & 0x00000000FFFFFFFF);
100 u32 x2 = static_cast<u32>(x >> 32);
101 return hash_pair(x1, x2);
102}
static u32 hash_pair(u32 a, u32 b, u32 seed=0) FL_NOEXCEPT
Definition hash.h:91

References FL_NOEXCEPT, hash_pair(), and x.

+ Here is the call graph for this function: