Searched refs:__t2 (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | stable_partition.h | 80 for (value_type* __t2 = __p.first; __t2 < __t; ++__t2, (void)++__i) in __stable_partition_impl() 81 *__i = _Ops::__iter_move(__t2); in __stable_partition_impl() local 202 for (value_type* __t2 = __p.first; __t2 < __t; ++__t2, (void)++__i) in __stable_partition_impl() 203 *__i = _Ops::__iter_move(__t2); in __stable_partition_impl() 214 for (value_type* __t2 = __p.first; __t2 < __t; ++__t2, (void) ++__i) __stable_partition_impl() local
|
/freebsd/contrib/llvm-project/libcxx/include/__thread/support/ |
H A D | pthread.h | 154 …CPP_HIDE_FROM_ABI bool __libcpp_thread_id_equal(__libcpp_thread_id __t1, __libcpp_thread_id __t2) { in __libcpp_thread_id_equal() argument 155 return __t1 == __t2; in __libcpp_thread_id_equal() 159 …BCPP_HIDE_FROM_ABI bool __libcpp_thread_id_less(__libcpp_thread_id __t1, __libcpp_thread_id __t2) { in __libcpp_thread_id_less() argument 160 return __t1 < __t2; in __libcpp_thread_id_less()
|
H A D | windows.h | 91 …_EXPORTED_FROM_ABI bool __libcpp_thread_id_equal(__libcpp_thread_id __t1, __libcpp_thread_id __t2); 93 …P_EXPORTED_FROM_ABI bool __libcpp_thread_id_less(__libcpp_thread_id __t1, __libcpp_thread_id __t2);
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | compressed_pair.h | 118 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR explicit __compressed_pair(_U1&& __t1, _U2&& __t2) 119 : _Base1(std::forward<_U1>(__t1)), _Base2(std::forward<_U2>(__t2)) {}
|
/freebsd/contrib/llvm-project/libcxx/include/__utility/ |
H A D | pair.h | 119 _LIBCPP_HIDE_FROM_ABI pair(_T1 const& __t1, _T2 const& __t2) : first(__t1), second(__t2) {} in pair() 179 …pair(_T1 const& __t1, _T2 const& __t2) noexcept(is_nothrow_copy_constructible<first_type>::value && in pair() 181 : first(__t1), second(__t2) {} in pair() 575 make_pair(_T1&& __t1, _T2&& __t2) { 577 std::forward<_T1>(__t1), std::forward<_T2>(__t2));
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/ |
H A D | xmmintrin.h | 1807 __v4sf __t2 = vec_vmrglw(__r0, __r1); \ 1813 (row2) = (__v4sf)vec_mergeh((__vector long long)__t2, \ 1815 (row3) = (__v4sf)vec_mergel((__vector long long)__t2, \
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | variant | 1458 _LIBCPP_HIDE_FROM_ABI constexpr bool operator()(_T1&& __t1, _T2&& __t2) const { 1459 …_convertible<decltype(_Operator{}(std::forward<_T1>(__t1), std::forward<_T2>(__t2))), bool>::value, 1461 return _Operator{}(std::forward<_T1>(__t1), std::forward<_T2>(__t2));
|
H A D | regex | 3768 _ForwardIterator __t2 = __parse_decimal_escape(__t1, __last); 3769 if (__t2 != __t1) 3770 __first = __t2; 3772 __t2 = __parse_character_class_escape(__t1, __last); 3773 if (__t2 != __t1) 3774 __first = __t2; 3776 __t2 = __parse_character_escape(__t1, __last); 3777 if (__t2 != __t1) 3778 __first = __t2;
|