Lines Matching refs:seg_count
153 hb_array_t<Type> sub_array (unsigned int start_offset = 0, unsigned int *seg_count = nullptr /* IN/OUT */) const
155 if (!start_offset && !seg_count)
163 if (seg_count)
164 count = *seg_count = MIN (count, *seg_count);
167 hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int seg_count) const
168 { return sub_array (start_offset, &seg_count); }
205 hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int *seg_count /* IN/OUT */) const
206 { return hb_sorted_array_t<Type> (((const hb_array_t<Type> *) (this))->sub_array (start_offset, seg_count)); }
207 hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int seg_count) const
208 { return sub_array (start_offset, &seg_count); }