Searched defs:page_t (Results 1 – 1 of 1) sorted by relevance
51 struct page_t struct53 inline void init0 (void) { memset (&v, 0, sizeof (v)); } in init0()54 inline void init1 (void) { memset (&v, 0xff, sizeof (v)); } in init1()56 inline unsigned int len (void) const in len()59 inline bool is_empty (void) const in is_empty()67 inline void add (hb_codepoint_t g) { elt (g) |= mask (g); } in add()68 inline void del (hb_codepoint_t g) { elt (g) &= ~mask (g); } in del()69 inline bool has (hb_codepoint_t g) const { return !!(elt (g) & mask (g)); } in has()71 inline void add_range (hb_codepoint_t a, hb_codepoint_t b) in add_range()88 inline bool is_equal (const page_t *other) const in is_equal()[all …]