Lines Matching defs:BEInt
106 struct BEInt<Type, 1> struct
110 constexpr BEInt (Type V) : v {uint8_t (V)} {} in BEInt() function
115 struct BEInt<Type, 2> argument
120 BEInt () = default; argument
122 BEInt (Type V) in BEInt() argument
149 struct BEInt<Type, 3> struct
154 constexpr BEInt (Type V) : v {uint8_t ((V >> 16) & 0xFF), in BEInt() argument
164 struct BEInt<Type, 4> argument
169 BEInt () = default; argument
171 BEInt (Type V) in BEInt() function
185 constexpr operator Type () const { in operator Type()
199 private: uint8_t v[4];