Lines Matching refs:end
104 unsigned int end,
117 for (unsigned int i = start; i < end; i++)
180 if (i == end-1)
201 return end - start;
207 unsigned int end,
216 for (unsigned int i = start; i < end; i++)
238 if (i == end-1)
254 return end - start;
260 unsigned int end,
273 for (unsigned int i = start; i < end; i++)
325 if (i == end-1) {
347 return end - start;
354 unsigned int end,
362 for (unsigned int i = start; i < end; i++)
378 if (i == end-1)
392 return end - start;
399 * @end: the last item in @buffer to serialize.
461 unsigned int end,
469 end = hb_clamp (end, start, buffer->len);
470 start = hb_min (start, end);
484 if (unlikely (start == end))
493 return _hb_buffer_serialize_glyphs_text (buffer, start, end,
498 return _hb_buffer_serialize_glyphs_json (buffer, start, end,
513 * @end: the last item in @buffer to serialize.
563 unsigned int end,
570 end = hb_clamp (end, start, buffer->len);
571 start = hb_min (start, end);
582 if (unlikely (start == end))
588 return _hb_buffer_serialize_unicode_text (buffer, start, end,
592 return _hb_buffer_serialize_unicode_json (buffer, start, end,
605 unsigned int end,
636 * @end: the last item in @buffer to serialize.
661 unsigned int end,
673 return hb_buffer_serialize_glyphs (buffer, start, end, buf, buf_size,
677 return hb_buffer_serialize_unicode (buffer, start, end, buf, buf_size,
682 return _hb_buffer_serialize_invalid (buffer, start, end, buf, buf_size,
688 parse_int (const char *pp, const char *end, int32_t *pv)
692 if (unlikely (!hb_parse_int (&p, end, &v, true/* whole buffer */)))
700 parse_uint (const char *pp, const char *end, uint32_t *pv)
704 if (unlikely (!hb_parse_uint (&p, end, &v, true/* whole buffer */)))
712 parse_hex (const char *pp, const char *end, uint32_t *pv)
716 if (unlikely (!hb_parse_uint (&p, end, &v, true/* whole buffer */, 16)))
751 const char *end;
753 end_ptr = &end;
822 const char *end;
824 end_ptr = &end;