Lines Matching refs:m_state
4587 std::uint64_t m_state;
12241 m_state = 0;
12243 m_state += seed_;
12257 const uint32_t xorshifted = static_cast<uint32_t>(((m_state >> 18u) ^ m_state) >> 27u);
12258 const auto output = rotate_right(xorshifted, m_state >> 59u);
12261 m_state = m_state * 6364136223846793005ULL + s_inc;
12267 return lhs.m_state == rhs.m_state;
12271 return lhs.m_state != rhs.m_state;