Home | History | Annotate | Download | only in msan

Lines Matching refs:nptr

228 INTERCEPTOR(long, strtol, const char *nptr, char **endptr,  // NOLINT
231 long res = REAL(strtol)(nptr, endptr, base); // NOLINT
238 INTERCEPTOR(long long, strtoll, const char *nptr, char **endptr, // NOLINT
241 long res = REAL(strtoll)(nptr, endptr, base); //NOLINT
248 INTERCEPTOR(unsigned long, strtoul, const char *nptr, char **endptr, // NOLINT
251 unsigned long res = REAL(strtoul)(nptr, endptr, base); // NOLINT
258 INTERCEPTOR(unsigned long long, strtoull, const char *nptr, // NOLINT
261 unsigned long res = REAL(strtoull)(nptr, endptr, base); // NOLINT
268 INTERCEPTOR(double, strtod, const char *nptr, char **endptr) { // NOLINT
270 double res = REAL(strtod)(nptr, endptr); // NOLINT
277 INTERCEPTOR(float, strtof, const char *nptr, char **endptr) { // NOLINT
279 float res = REAL(strtof)(nptr, endptr); // NOLINT
286 INTERCEPTOR(long double, strtold, const char *nptr, char **endptr) { // NOLINT
288 long double res = REAL(strtold)(nptr, endptr); // NOLINT
425 INTERCEPTOR(double, wcstod, const wchar_t *nptr, wchar_t **endptr) {
427 double res = REAL(wcstod)(nptr, endptr);