Searched refs:INTERCEPTORS_STRTO_BASE (Results 1 – 1 of 1) sorted by relevance
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 455 #define INTERCEPTORS_STRTO_BASE(ret_type, func, char_type) \ macro 464 INTERCEPTORS_STRTO_BASE(long, strtol, char) // NOLINT in INTERCEPTORS_STRTO() 465 INTERCEPTORS_STRTO_BASE(long long, strtoll, char) // NOLINT in INTERCEPTORS_STRTO() 466 INTERCEPTORS_STRTO_BASE(unsigned long, strtoul, char) // NOLINT in INTERCEPTORS_STRTO() 467 INTERCEPTORS_STRTO_BASE(unsigned long long, strtoull, char) // NOLINT in INTERCEPTORS_STRTO() 472 INTERCEPTORS_STRTO_BASE(long, wcstol, wchar_t) // NOLINT in INTERCEPTORS_STRTO() 473 INTERCEPTORS_STRTO_BASE(long long, wcstoll, wchar_t) // NOLINT in INTERCEPTORS_STRTO() 474 INTERCEPTORS_STRTO_BASE(unsigned long, wcstoul, wchar_t) // NOLINT in INTERCEPTORS_STRTO() 475 INTERCEPTORS_STRTO_BASE(unsigned long long, wcstoull, wchar_t) // NOLINT in INTERCEPTORS_STRTO()
|