Lines Matching refs:__p2
729 char* __p2;
730 …long long __ll = strtoll_l(__a, &__p2, __base, _LIBC…
734 if (__p2 != __a_end) {
761 char* __p2;
762 …unsigned long long __ll = strtoull_l(__a, &__p2, __base, _LIB…
766 if (__p2 != __a_end) {
783 _LIBCPP_HIDE_FROM_ABI _Tp __do_strtod(const char* __a, char** __p2);
786 inline _LIBCPP_HIDE_FROM_ABI float __do_strtod<float>(const char* __a, char** __p2) {
787 return strtof_l(__a, __p2, _LIBCPP_GET_C_LOCALE);
791 inline _LIBCPP_HIDE_FROM_ABI double __do_strtod<double>(const char* __a, char** __p2) {
792 return strtod_l(__a, __p2, _LIBCPP_GET_C_LOCALE);
796 inline _LIBCPP_HIDE_FROM_ABI long double __do_strtod<long double>(const char* __a, char** __p2) {
797 return strtold_l(__a, __p2, _LIBCPP_GET_C_LOCALE);
805 char* __p2;
806 … _Tp __ld = std::__do_strtod<_Tp>(__a, &__p2);
810 if (__p2 != __a_end) {