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