Home | History | Annotate | Download | only in common

Lines Matching refs:hex

39 class Hex
42 Hex (deUint64 value_) : value(value_) {}
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex)
69 return hex.toStream(stream);
114 stream << Hex<BitfieldSize/4>(bitsLeft);
152 return stream << Hex<sizeof(int)*2>(m_value);
161 return Hex<sizeof(int)*2>(m_value).toString();
216 // Hex format iterator (useful for combining with ArrayFormatter).
233 Hex<sizeof(T)*2> operator* (void) const { return Hex<sizeof(T)*2>(*m_iter); }
248 inline Format::Hex<NumDigits> toHex (T value)
250 return Format::Hex<NumDigits>(toUint64(value));
255 inline Format::Hex<sizeof(T)*2> toHex (T value)
257 return Format::Hex<sizeof(T)*2>(toUint64(value));