Searched refs:MASK32 (Results 1 – 1 of 1) sorted by relevance
27 static constexpr uint64_t MASK32 = 0xFFFFFFFFu; variable29 static constexpr uint64_t low(uint64_t v) { return v & MASK32; } in low()30 static constexpr uint64_t high(uint64_t v) { return (v >> 32) & MASK32; } in high()