Searched refs:nptr (Results 1 – 9 of 9) sorted by relevance
/stdlib/ |
A D | atof.c | 25 atof (const char *nptr) in atof() argument 27 return strtod (nptr, (char **) NULL); in atof()
|
A D | atol.c | 25 atol (const char *nptr) in atol() argument 27 return strtol (nptr, (char **) NULL, 10); in atol()
|
A D | atoll.c | 25 atoll (const char *nptr) in atoll() argument 27 return strtoll (nptr, (char **) NULL, 10); in atoll()
|
A D | atoi.c | 25 atoi (const char *nptr) in atoi() argument 27 return (int) strtol (nptr, (char **) NULL, 10); in atoi()
|
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 | 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() 288 save = s = nptr; in INTERNAL() 515 if (save - nptr >= 2 && TOUPPER (save[-1]) == L_('X') 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 | 506 ____STRTOF_INTERNAL (const STRING_TYPE *nptr, STRING_TYPE **endptr, int group, in ____STRTOF_INTERNAL() argument 607 cp = nptr - 1; in ____STRTOF_INTERNAL() 685 RETURN (0.0, nptr); in ____STRTOF_INTERNAL() 766 tp == start_of_digits ? (base == 16 ? cp - 1 : nptr) : tp); in ____STRTOF_INTERNAL() 820 RETURN (0.0, nptr); 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 19 milliseconds