Home
last modified time | relevance | path

Searched refs:base (Results 1 – 5 of 5) sorted by relevance

/stdlib/
A Dstrtol_l.c282 if (base < 0 || base == 1 || base > 36) in INTERNAL()
309 if ((base == 0 || base == 16) && TOUPPER (s[1]) == L_('X')) in INTERNAL()
312 base = 16; in INTERNAL()
314 else if (base == 0) in INTERNAL()
315 base = 8; in INTERNAL()
317 else if (base == 0) in INTERNAL()
318 base = 10; in INTERNAL()
324 if (base != 10) in INTERNAL()
415 if ((int) c >= base) in INTERNAL()
463 if ((int) c >= base) in INTERNAL()
[all …]
A Dstrtol.c96 int base, int group) in INTERNAL()
98 return INTERNAL (__strtol_l) (nptr, endptr, base, group, _NL_CURRENT_LOCALE); in INTERNAL()
104 __strtol (const STRING_TYPE *nptr, STRING_TYPE **endptr, int base) in libc_hidden_def()
106 return INTERNAL (__strtol_l) (nptr, endptr, base, 0, _NL_CURRENT_LOCALE); in libc_hidden_def()
A Dtst-strtoll.c15 int base; /* Use this base. */ member
325 l = strtoll (lt->str, &ep, lt->base); in do_test()
328 lt->str, lt->base, (unsigned int) (lt - tests)); in do_test()
358 ul = strtoull (lt->str, &ep, lt->base); in do_test()
361 lt->str, lt->base, (unsigned int) (lt - tests)); in do_test()
A Dtst-strtol.c15 int base; /* Use this base. */ member
550 l = strtol (lt->str, &ep, lt->base); in do_test()
553 lt->str, lt->base, (unsigned int) (lt - tests)); in do_test()
583 ul = strtoul (lt->str, &ep, lt->base); in do_test()
586 lt->str, lt->base, (unsigned int) (lt - tests)); in do_test()
A Dstrtod_l.c514 int base = 10; in ____STRTOF_INTERNAL() local
694 base = 16; in ____STRTOF_INTERNAL()
747 && (base != 16 in ____STRTOF_INTERNAL()
754 || (base != 16 && lowc == L_('e')))) in ____STRTOF_INTERNAL()
776 || (base == 16 in ____STRTOF_INTERNAL()
881 if ((base == 16 && lowc == L_('p')) in ____STRTOF_INTERNAL()
900 if (base == 16) in ____STRTOF_INTERNAL()
1035 exponent += base == 16 ? 4 : 1; in ____STRTOF_INTERNAL()
1069 assert (lead_zero <= (base == 16 in ____STRTOF_INTERNAL()
1072 assert (lead_zero <= (base == 16 in ____STRTOF_INTERNAL()
[all …]

Completed in 12 milliseconds