Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-algs.hh92 struct BEInt<Type, 1> struct
96 constexpr BEInt (Type V) : v {uint8_t (V)} {} in BEInt() function
101 struct BEInt<Type, 2> struct
105 constexpr BEInt (Type V) : v {uint8_t ((V >> 8) & 0xFF), in BEInt() function
129 struct BEInt<Type, 3> argument
134 constexpr BEInt (Type V) : v {uint8_t ((V >> 16) & 0xFF), in BEInt() function
144 struct BEInt<Type, 4> argument
148 constexpr BEInt (Type V) : v {uint8_t ((V >> 24) & 0xFF), in BEInt() function
152 constexpr operator Type () const { return (v[0] << 24) in operator Type()
156 private: uint8_t v[4];