Home
last modified time | relevance | path

Searched refs:the_index (Results 1 – 4 of 4) sorted by relevance

/PHP-5.3/ext/json/
H A Dutf8_to_utf16.c36 int the_index = 0; in utf8_to_utf16() local
43 return (c == UTF8_END) ? the_index : UTF8_ERROR; in utf8_to_utf16()
46 w[the_index] = (unsigned short)c; in utf8_to_utf16()
47 the_index += 1; in utf8_to_utf16()
50 w[the_index] = (unsigned short)(0xD800 | (c >> 10)); in utf8_to_utf16()
51 the_index += 1; in utf8_to_utf16()
52 w[the_index] = (unsigned short)(0xDC00 | (c & 0x3FF)); in utf8_to_utf16()
53 the_index += 1; in utf8_to_utf16()
H A Dutf8_decode.c62 if (utf8->the_index >= utf8->the_length) { in get()
65 c = utf8->the_input[utf8->the_index] & 0xFF; in get()
66 utf8->the_index += 1; in get()
89 utf8->the_index = 0; in utf8_decode_init()
130 if (utf8->the_index >= utf8->the_length) { in utf8_decode_next()
131 return utf8->the_index == utf8->the_length ? UTF8_END : UTF8_ERROR; in utf8_decode_next()
133 utf8->the_byte = utf8->the_index; in utf8_decode_next()
H A Dutf8_decode.h8 int the_index; member
H A DJSON_parser.c428 int the_index; in parse_JSON() local
438 for (the_index = 0; the_index < length; the_index += 1) { in parse_JSON()
439 next_char = utf16_json[the_index]; in parse_JSON()

Completed in 8 milliseconds