Searched refs:__p2 (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | filesystem_error.h | 42 …_LIBCPP_HIDE_FROM_ABI filesystem_error(const string& __what, const path& __p1, const path& __p2, e… in filesystem_error() argument 43 : system_error(__ec, __what), __storage_(make_shared<_Storage>(__p1, __p2)) { in filesystem_error() 61 _LIBCPP_HIDE_FROM_ABI _Storage(const path& __p1, const path& __p2) : __p1_(__p1), __p2_(__p2) {} in _Storage()
|
H A D | operations.h | 143 …E_FROM_ABI bool equivalent(const path& __p1, const path& __p2) { return __equivalent(__p1, __p2); } in equivalent() argument 144 inline _LIBCPP_HIDE_FROM_ABI bool equivalent(const path& __p1, const path& __p2, error_code& __ec) … in equivalent() argument 145 return __equivalent(__p1, __p2, &__ec); in equivalent()
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | rotate.h | 112 _RandomAccessIterator __p2 = __p1 + __m1; in __rotate_gcd() local 114 *__p1 = _Ops::__iter_move(__p2); in __rotate_gcd() 115 __p1 = __p2; in __rotate_gcd() 116 const difference_type __d = _Ops::distance(__p2, __last); in __rotate_gcd() 118 __p2 += __m1; in __rotate_gcd() 120 __p2 = __first + (__m1 - __d); in __rotate_gcd() 121 } while (__p2 != __p); in __rotate_gcd()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | arm_neon_incl.td | 96 // (cast "int32_t", $p2) -> "(int32_t)__p2" 110 // example: (dup_typed $p1, $p2) -> "(float16x4_t) {__p2, __p2, __p2, __p2}" 111 // (assuming __p1 is float16x4_t, and __p2 is a compatible scalar).
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | locale | 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) { [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | algorithm_impl.h |
|