Searched defs:BEInt (Results 1 – 1 of 1) sorted by relevance
93 struct BEInt<Type, 1> struct97 constexpr BEInt (Type V) : v {uint8_t (V)} {} in BEInt() function102 struct BEInt<Type, 2> argument106 constexpr BEInt (Type V) : v {uint8_t ((V >> 8) & 0xFF), in BEInt() argument131 struct BEInt<Type, 3> argument136 constexpr BEInt (Type V) : v {uint8_t ((V >> 16) & 0xFF), in BEInt() argument146 struct BEInt<Type, 4> argument150 constexpr BEInt (Type V) : v {uint8_t ((V >> 24) & 0xFF), in BEInt() argument155 struct __attribute__((packed)) packed_uint32_t { uint32_t v; };156 constexpr operator Type () const { in operator Type()[all …]