Lines Matching refs:input_end
527 …f8(const unsigned char *const input_pointer, const unsigned char *const input_end, unsigned char *… in utf16_literal_to_utf8() argument
537 if ((input_end - first_sequence) < 6) { in utf16_literal_to_utf8()
554 if ((input_end - second_sequence) < 6) { in utf16_literal_to_utf8()
627 const unsigned char *input_end = buffer_at_offset(input_buffer) + 1; in parse_string() local
638 …while (((size_t)(input_end - input_buffer->content) < input_buffer->length) && (*input_end != '\"'… in parse_string()
640 if (input_end[0] == '\\') { in parse_string()
641 if ((size_t)(input_end + 1 - input_buffer->content) >= input_buffer->length) { in parse_string()
646 input_end++; in parse_string()
648 input_end++; in parse_string()
650 …if (((size_t)(input_end - input_buffer->content) >= input_buffer->length) || (*input_end != '\"'))… in parse_string()
653 allocation_length = (size_t)(input_end - buffer_at_offset(input_buffer)) - skipped_bytes; in parse_string()
660 while (input_pointer < input_end) { in parse_string()
665 if ((input_end - input_pointer) < 1) goto fail; in parse_string()
691 sequence_length = utf16_literal_to_utf8(input_pointer, input_end, &output_pointer); in parse_string()
711 input_buffer->offset = (size_t)(input_end - input_buffer->content); in parse_string()