Lines Matching refs:p_end
261 const char *p_end = str + len; in is_integer_syntax() local
267 if (p == p_end) in is_integer_syntax()
272 if (p == p_end) in is_integer_syntax()
290 while (p < p_end); in is_integer_syntax()
302 const char *p_end = str + len; in is_other_number_syntax() local
321 if (p == p_end) in is_other_number_syntax()
328 if (p == p_end) in is_other_number_syntax()
332 if (unconstrained && (*p == 'I' || *p == 'i') && p + 1 == p_end) in is_other_number_syntax()
362 while (p < p_end); in is_other_number_syntax()
365 if (p < p_end) in is_other_number_syntax()
371 while (p < p_end && *p == '#') in is_other_number_syntax()
373 if (p < p_end) in is_other_number_syntax()
380 for (; p < p_end; p++) in is_other_number_syntax()
401 while (p < p_end && *p == '#') in is_other_number_syntax()
413 for (; p < p_end; p++) in is_other_number_syntax()
426 while (p < p_end && *p == '#') in is_other_number_syntax()
429 if (p < p_end) in is_other_number_syntax()
442 if (p == p_end) in is_other_number_syntax()
447 if (p == p_end) in is_other_number_syntax()
455 if (p == p_end) in is_other_number_syntax()
468 if (p == p_end) in is_other_number_syntax()
474 if (seen_sign && (*p == 'I' || *p == 'i') && p + 1 == p_end) in is_other_number_syntax()
481 return (p_end[-1] == 'I' || p_end[-1] == 'i') in is_other_number_syntax()
482 && (p + 1 == p_end - 1 in is_other_number_syntax()
483 || is_other_number_syntax (p, p_end - 1 - p, radix, false)); in is_other_number_syntax()
488 return is_other_number_syntax (p, p_end - p, radix, false); in is_other_number_syntax()