Home
last modified time | relevance | path

Searched defs:BEInt (Results 1 – 1 of 1) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-algs.hh93 struct BEInt<Type, 1> struct
97 constexpr BEInt (Type V) : v {uint8_t (V)} {} in BEInt() function
102 struct BEInt<Type, 2> argument
106 constexpr BEInt (Type V) : v {uint8_t ((V >> 8) & 0xFF), in BEInt() argument
131 struct BEInt<Type, 3> argument
136 constexpr BEInt (Type V) : v {uint8_t ((V >> 16) & 0xFF), in BEInt() function
146 struct BEInt<Type, 4> argument
150 constexpr BEInt (Type V) : v {uint8_t ((V >> 24) & 0xFF), in BEInt() argument
155 struct __attribute__((packed)) packed_uint32_t { uint32_t v; };
156 constexpr operator Type () const { in operator Type()
[all …]