Searched refs:ELT_BITS (Results 1 – 1 of 1) sorted by relevance
113 unsigned int i = m / ELT_BITS; in next()120 *codepoint = i * ELT_BITS + elt_get_min (*p); in next()135 unsigned int i = m / ELT_BITS; in previous()144 *codepoint = i * ELT_BITS + elt_get_max (*p); in previous()158 return i * ELT_BITS + elt_get_min (v[i]); in get_min()165 return i * ELT_BITS + elt_get_max (v[i]); in get_max()178 static constexpr unsigned ELT_BITS = sizeof (elt_t) * 8; member179 static constexpr unsigned ELT_MASK = ELT_BITS - 1;184 elt_t &elt (hb_codepoint_t g) { return v[(g & MASK) / ELT_BITS]; } in elt()185 elt_t const &elt (hb_codepoint_t g) const { return v[(g & MASK) / ELT_BITS]; } in elt()