Home
last modified time | relevance | path

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

/aosp_15_r20/external/harfbuzz_ng/src/
H A Dhb-bit-page.hh90 struct hb_bit_page_t struct
92 void init0 () { v.init0 (); population = 0; } in init0()
93 void init1 () { v.init1 (); population = PAGE_BITS; } in init1()
95 void dirty () { population = UINT_MAX; } in dirty()
97 static inline constexpr unsigned len () in len()
100 operator bool () const { return !is_empty (); } in operator bool()
101 bool is_empty () const in is_empty()
109 uint32_t hash () const in hash()
114 void add (hb_codepoint_t g) { elt (g) |= mask (g); dirty (); } in add()
115 void del (hb_codepoint_t g) { elt (g) &= ~mask (g); dirty (); } in del()
[all …]