Lines Matching refs:Format
34 namespace Format namespace
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex) in operator <<()
83 #define TCU_BIT_DESC(BIT) tcu::Format::BitDesc(BIT, #BIT)
249 inline Format::Hex<NumDigits> toHex (T value) in toHex()
251 return Format::Hex<NumDigits>(toUint64(value)); in toHex()
256 inline Format::Hex<sizeof(T)*2> toHex (T value) in toHex()
258 return Format::Hex<sizeof(T)*2>(toUint64(value)); in toHex()
263 inline Format::Bitfield<sizeof(T)*8> formatBitfield (T value, const Format::BitDesc (&desc)[Size]) in formatBitfield()
265 return Format::Bitfield<sizeof(T)*8>((deUint64)value, &desc[0], &desc[Size]); in formatBitfield()
270 inline Format::Array<Iterator> formatArray (const Iterator& begin, const Iterator& end) in formatArray()
272 return Format::Array<Iterator>(begin, end); in formatArray()
277 inline Format::ArrayPointer<T> formatArray (const T* arr, int size) in formatArray()
279 return Format::ArrayPointer<T>(arr, size); in formatArray()
284 inline Format::ArrayPointer<T> formatArray (const T (&arr)[Size]) in formatArray()
286 return Format::ArrayPointer<T>(arr, Size); in formatArray()