Searched refs:start_of_digits (Results 1 – 1 of 1) sorted by relevance
/glibc-2.36/stdlib/ |
D | strtod_l.c | 529 const STRING_TYPE *startp, *start_of_digits; in ____STRTOF_INTERNAL() local 701 start_of_digits = startp = cp; in ____STRTOF_INTERNAL() 748 || cp != start_of_digits in ____STRTOF_INTERNAL() 752 || (base == 16 && (cp != start_of_digits in ____STRTOF_INTERNAL() 757 tp = __correctly_grouped_prefixwc (start_of_digits, cp, thousands, in ____STRTOF_INTERNAL() 760 tp = __correctly_grouped_prefixmb (start_of_digits, cp, thousands, in ____STRTOF_INTERNAL() 766 tp == start_of_digits ? (base == 16 ? cp - 1 : nptr) : tp); in ____STRTOF_INTERNAL() 804 if (__builtin_expect (grouping != NULL, 0) && cp > start_of_digits) in ____STRTOF_INTERNAL() 808 tp = __correctly_grouped_prefixwc (start_of_digits, cp, thousands, in ____STRTOF_INTERNAL() 811 tp = __correctly_grouped_prefixmb (start_of_digits, cp, thousands, in ____STRTOF_INTERNAL() [all …]
|