Lines Matching refs:nptr
251 INTERCEPTOR(long, strtol, const char *nptr, char **endptr, // NOLINT
254 long res = REAL(strtol)(nptr, endptr, base); // NOLINT
261 INTERCEPTOR(long long, strtoll, const char *nptr, char **endptr, // NOLINT
264 long res = REAL(strtoll)(nptr, endptr, base); //NOLINT
271 INTERCEPTOR(unsigned long, strtoul, const char *nptr, char **endptr, // NOLINT
274 unsigned long res = REAL(strtoul)(nptr, endptr, base); // NOLINT
281 INTERCEPTOR(unsigned long long, strtoull, const char *nptr, // NOLINT
284 unsigned long res = REAL(strtoull)(nptr, endptr, base); // NOLINT
291 INTERCEPTOR(double, strtod, const char *nptr, char **endptr) { // NOLINT
293 double res = REAL(strtod)(nptr, endptr); // NOLINT
300 INTERCEPTOR(float, strtof, const char *nptr, char **endptr) { // NOLINT
302 float res = REAL(strtof)(nptr, endptr); // NOLINT
309 INTERCEPTOR(long double, strtold, const char *nptr, char **endptr) { // NOLINT
311 long double res = REAL(strtold)(nptr, endptr); // NOLINT
473 INTERCEPTOR(double, wcstod, const wchar_t *nptr, wchar_t **endptr) {
475 double res = REAL(wcstod)(nptr, endptr);