Lines Matching refs:nptr
147 wcstod_l (const wchar_t *nptr, wchar_t **endptr, in wcstod_l() argument
157 while (iswspace_l(*nptr, loc)) in wcstod_l()
158 nptr++; in wcstod_l()
170 wcp = nptr; in wcstod_l()
175 *endptr = (wchar_t *)nptr; 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
229 while (iswspace_l(*nptr, loc)) in wcstof_l()
230 nptr++; in wcstof_l()
242 wcp = nptr; in wcstof_l()
247 *endptr = (wchar_t *)nptr; 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()
297 wcstof (const wchar_t *__restrict nptr, in wcstof() argument
300 return wcstof_l (nptr, endptr, __get_current_locale ()); in wcstof()