Lines Matching refs:nptr
101 * @nptr: the string to convert to a numeric value.
131 _PyOS_ascii_strtod(const char *nptr, char **endptr)
136 assert(nptr != NULL);
142 result = _Py_dg_strtod(nptr, endptr);
145 if (*endptr == nptr)
147 result = _Py_parse_inf_or_nan(nptr, endptr);
164 _PyOS_ascii_strtod(const char *nptr, char **endptr)
176 assert(nptr != NULL);
189 val = _Py_parse_inf_or_nan(nptr, endptr);
190 if (*endptr != nptr)
200 p = nptr;
260 *endptr = (char *)nptr;
298 if (negate && fail_pos != nptr)
305 *endptr = (char*)nptr;