Lines Matching refs:m_value
90 : m_value (value) in Bitfield()
98 deUint64 bitsLeft = m_value; in toStream()
103 if (bitsLeft != m_value) in toStream()
112 if (bitsLeft != m_value) in toStream()
121 deUint64 m_value; member in tcu::Format::Bitfield
142 , m_value (value) in Enum()
148 const char* name = m_getName(m_value); in toStream()
152 return stream << Hex<NumBytes*2>((deUint64)m_value); in toStream()
157 const char* name = m_getName(m_value); in toString()
161 return Hex<NumBytes*2>((deUint64)m_value).toString(); in toString()
166 const T m_value; member in tcu::Format::Enum