Searched refs:endptr (Results 1 – 6 of 6) sorted by relevance
/stdlib/ |
A D | strtold_l.c | 42 INTERNAL (__STRTOLD) (const STRING_TYPE *nptr, STRING_TYPE **endptr, in INTERNAL() 45 return INTERNAL (__STRTOD) (nptr, endptr, group, loc); in INTERNAL() 53 __STRTOLD (const STRING_TYPE *nptr, STRING_TYPE **endptr, locale_t loc) in libc_hidden_def() 55 return INTERNAL (__STRTOD) (nptr, endptr, 0, loc); in libc_hidden_def()
|
A D | strtod_nan_main.c | 33 STRTOD_NAN (const STRING_TYPE *str, STRING_TYPE **endptr, STRING_TYPE endc) in STRTOD_NAN() argument 58 if (endptr != NULL) in STRTOD_NAN() 59 *endptr = (STRING_TYPE *) cp; in STRTOD_NAN()
|
A D | strtol.c | 95 INTERNAL (strtol) (const STRING_TYPE *nptr, STRING_TYPE **endptr, 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 D | strtod.c | 67 INTERNAL (STRTOF) (const STRING_TYPE *nptr, STRING_TYPE **endptr, int group) in INTERNAL() 69 return INTERNAL(STRTOF_L) (nptr, endptr, group, _NL_CURRENT_LOCALE); in INTERNAL() 80 STRTOF (const STRING_TYPE *nptr, STRING_TYPE **endptr) in libc_hidden_def() 82 return INTERNAL(STRTOF_L) (nptr, endptr, 0, _NL_CURRENT_LOCALE); in libc_hidden_def()
|
A D | strtol_l.c | 223 INTERNAL (__strtol_l) (const STRING_TYPE *nptr, STRING_TYPE **endptr, in INTERNAL() 482 if (endptr != NULL) in INTERNAL() 483 *endptr = (STRING_TYPE *) s; in INTERNAL() 513 if (endptr != NULL) in INTERNAL() 517 *endptr = (STRING_TYPE *) &save[-1]; in INTERNAL() 520 *endptr = (STRING_TYPE *) nptr; in INTERNAL() 534 extern INT __strtol_l (const STRING_TYPE *nptr, STRING_TYPE **endptr, 543 __strtol_l (const STRING_TYPE *nptr, STRING_TYPE **endptr, in __strtol_l() argument 546 return INTERNAL (__strtol_l) (nptr, endptr, base, 0, loc); in __strtol_l()
|
A D | strtod_l.c | 170 do { if (endptr != NULL) *endptr = (STRING_TYPE *) (end); \ 506 ____STRTOF_INTERNAL (const STRING_TYPE *nptr, STRING_TYPE **endptr, int group, in ____STRTOF_INTERNAL() argument 649 if (endptr != NULL) in ____STRTOF_INTERNAL() 650 *endptr = (STRING_TYPE *) in ____STRTOF_INTERNAL() 678 if (endptr != NULL) in ____STRTOF_INTERNAL() 679 *endptr = (STRING_TYPE *) cp; in ____STRTOF_INTERNAL() 1042 if (endptr) in ____STRTOF_INTERNAL() 1043 *endptr = (STRING_TYPE *) cp; in ____STRTOF_INTERNAL() 1781 __STRTOF (const STRING_TYPE *nptr, STRING_TYPE **endptr, locale_t loc) in libc_hidden_def() 1783 return ____STRTOF_INTERNAL (nptr, endptr, 0, loc); in libc_hidden_def()
|
Completed in 13 milliseconds