Searched defs:page_t (Results 1 – 1 of 1) sorted by relevance
54 struct page_t struct56 void init0 () { v.clear (); } in init0()57 void init1 () { v.clear (0xFF); } in init1()59 unsigned int len () const in len()62 bool is_empty () const in is_empty()70 void add (hb_codepoint_t g) { elt (g) |= mask (g); } in add()71 void del (hb_codepoint_t g) { elt (g) &= ~mask (g); } in del()72 bool has (hb_codepoint_t g) const { return !!(elt (g) & mask (g)); } in has()74 void add_range (hb_codepoint_t a, hb_codepoint_t b) in add_range()91 bool is_equal (const page_t *other) const in is_equal()[all …]