Lines Matching refs:next

187 				unsigned char next;  in get_next_char()  local
191 next = str[pos + 1]; in get_next_char()
193 if ((next >= 0x40 && next <= 0x7E) || in get_next_char()
194 (next >= 0xA1 && next <= 0xFE)) { in get_next_char()
195 this_char = (c << 8) | next; in get_next_char()
211 unsigned char next; in get_next_char() local
215 next = str[pos + 1]; in get_next_char()
217 if ((next >= 0x40 && next <= 0x7E) || in get_next_char()
218 (next >= 0xA1 && next <= 0xFE)) { in get_next_char()
219 this_char = (c << 8) | next; in get_next_char()
220 } else if (next != 0x80 && next != 0xFF) { in get_next_char()
237 unsigned char next; in get_next_char() local
241 next = str[pos + 1]; in get_next_char()
243 if (gb2312_trail(next)) { in get_next_char()
244 this_char = (c << 8) | next; in get_next_char()
245 } else if (gb2312_lead(next)) { in get_next_char()
264 unsigned char next; in get_next_char() local
268 next = str[pos + 1]; in get_next_char()
270 if (sjis_trail(next)) { in get_next_char()
271 this_char = (c << 8) | next; in get_next_char()
272 } else if (sjis_lead(next)) { in get_next_char()
292 unsigned next; in get_next_char() local
295 next = str[pos + 1]; in get_next_char()
297 if (next >= 0xA1 && next <= 0xFE) { in get_next_char()
299 this_char = (c << 8) | next; in get_next_char()
301 MB_FAILURE(pos, (next != 0xA0 && next != 0xFF) ? 1 : 2); in get_next_char()
305 unsigned next; in get_next_char() local
309 next = str[pos + 1]; in get_next_char()
310 if (next >= 0xA1 && next <= 0xDF) { in get_next_char()
312 this_char = (c << 8) | next; in get_next_char()
314 MB_FAILURE(pos, (next != 0xA0 && next != 0xFF) ? 1 : 2); in get_next_char()
838 const char *next = NULL; /* when set, next > p, otherwise possible inf loop */ in traverse_for_entities() local
855 next = &p[2]; in traverse_for_entities()
856 if (process_numeric_entity(&next, &code) == FAILURE) in traverse_for_entities()
876 next = &p[1]; in traverse_for_entities()
877 start = next; in traverse_for_entities()
879 if (process_named_entity_html(&next, &start, &ent_len) == FAILURE) in traverse_for_entities()
894 assert(*next == ';'); in traverse_for_entities()
915 p = next + 1; in traverse_for_entities()
919 for (; p < next; p++) { in traverse_for_entities()
1278 *next = start; in php_escape_html_entities_ex() local
1281 if (process_named_entity_html(&next, &start, &ent_len) == FAILURE) in php_escape_html_entities_ex()