Lines Matching refs:Hex
41 class Hex class
44 Hex (deUint64 value_) : value(value_) {} in Hex() function in tcu::Format::Hex
71 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex) in operator <<()
118 stream << Hex<BitfieldSize/4>(bitsLeft); in toStream()
156 return stream << Hex<NumBytes*2>((deUint64)m_value); in toStream()
165 return Hex<NumBytes*2>((deUint64)m_value).toString(); in toString()
238 Hex<sizeof(T)*2> operator* (void) const { return Hex<sizeof(T)*2>(*m_iter); } in operator *()
253 inline Format::Hex<NumDigits> toHex (T value) in toHex()
255 return Format::Hex<NumDigits>(toUint64(value)); in toHex()
260 inline Format::Hex<sizeof(T)*2> toHex (T value) in toHex()
262 return Format::Hex<sizeof(T)*2>(toUint64(value)); in toHex()