Home | History | Annotate | Download | only in common

Lines Matching refs:deUint64

42 	Hex (deUint64 value_) : value(value_) {}
56 char buf[sizeof(deUint64)*2 + 3];
63 deUint64 value;
77 deUint64 bit;
80 BitDesc (deUint64 bit_, const char* name_) : bit(bit_), name(name_) {}
89 Bitfield (deUint64 value, const BitDesc* begin, const BitDesc* end)
98 deUint64 bitsLeft = m_value;
121 deUint64 m_value;
242 template <int Bits> inline deUint64 makeMask64 (void) { return (1ull<<Bits)-1; }
243 template <> inline deUint64 makeMask64<64> (void) { return ~0ull; }
244 template <typename T> inline deUint64 toUint64 (T value) { return (deUint64)value & makeMask64<sizeof(T)*8>(); }
264 return Format::Bitfield<sizeof(T)*8>((deUint64)value, &desc[0], &desc[Size]);