Lines Matching refs:endptr
147 wcstod_l (const wchar_t *nptr, wchar_t **endptr, in wcstod_l() argument
174 if (endptr != NULL) in wcstod_l()
175 *endptr = (wchar_t *)nptr; in wcstod_l()
192 if (endptr != NULL) { in wcstod_l()
210 *endptr = (wchar_t *)nptr + (end - buf); in wcstod_l()
219 wcstof_l (const wchar_t *nptr, wchar_t **endptr, in wcstof_l() argument
246 if (endptr != NULL) in wcstof_l()
247 *endptr = (wchar_t *)nptr; in wcstof_l()
264 if (endptr != NULL) { in wcstof_l()
282 *endptr = (wchar_t *)nptr + (end - buf); in wcstof_l()
291 wcstod (const wchar_t *__restrict nptr, wchar_t **__restrict endptr) in wcstod() argument
293 return wcstod_l (nptr, endptr, __get_current_locale ()); in wcstod()
298 wchar_t **__restrict endptr) in wcstof() argument
300 return wcstof_l (nptr, endptr, __get_current_locale ()); in wcstof()