Searched defs:BEInt (Results 1 – 1 of 1) sorted by relevance
92 struct BEInt<Type, 1> struct96 constexpr BEInt (Type V) : v {uint8_t (V)} {} in BEInt() function101 struct BEInt<Type, 2> struct105 constexpr BEInt (Type V) : v {uint8_t ((V >> 8) & 0xFF), in BEInt() function129 struct BEInt<Type, 3> argument134 constexpr BEInt (Type V) : v {uint8_t ((V >> 16) & 0xFF), in BEInt() function144 struct BEInt<Type, 4> argument148 constexpr BEInt (Type V) : v {uint8_t ((V >> 24) & 0xFF), in BEInt() function152 constexpr operator Type () const { return (v[0] << 24) in operator Type()156 private: uint8_t v[4];