Searched refs:_T1 (Results 1 - 25 of 30) sorted by relevance

12

/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_pair.h100 template <bool, typename _T1, typename _T2>
106 return __and_<is_constructible<_T1, const _U1&>,
113 return __and_<is_convertible<const _U1&, _T1>,
120 return __and_<is_constructible<_T1, _U1&&>,
127 return __and_<is_convertible<_U1&&, _T1>,
134 using __do_converts = __and_<is_convertible<const _U1&, _T1>,
139 return __and_<is_constructible<_T1, const _U1&>,
148 using __do_converts = __and_<is_convertible<_U1&&, _T1>,
153 return __and_<is_constructible<_T1, _U1&&>,
160 template <typename _T1, typenam
[all...]
H A Drefwrap.h58 template<typename _Res, typename _T1>
59 struct _Maybe_unary_or_binary_function<_Res, _T1>
60 : std::unary_function<_T1, _Res> { };
63 template<typename _Res, typename _T1, typename _T2>
64 struct _Maybe_unary_or_binary_function<_Res, _T1, _T2>
65 : std::binary_function<_T1, _T2, _Res> { };
221 template<typename _Res, typename _T1 _GLIBCXX_NOEXCEPT_PARM>
222 struct _Reference_wrapper_base<_Res(_T1) _GLIBCXX_NOEXCEPT_QUAL>
223 : unary_function<_T1, _Res>
226 template<typename _Res, typename _T1>
[all...]
H A Dstl_construct.h111 template<typename _T1, typename _T2>
113 _Construct(_T1* __p, const _T2& __value)
117 ::new(static_cast<void*>(__p)) _T1(__value);
121 template<typename _T1>
123 _Construct_novalue(_T1* __p)
124 { ::new(static_cast<void*>(__p)) _T1; }
H A Dallocator.h212 template<typename _T1, typename _T2>
214 operator==(const allocator<_T1>&, const allocator<_T2>&)
219 template<typename _T1, typename _T2>
221 operator!=(const allocator<_T1>&, const allocator<_T2>&)
H A Dstl_map.h1397 template<typename _K1, typename _T1, typename _C1, typename _A1>
1399 operator==(const map<_K1, _T1, _C1, _A1>&,
1400 const map<_K1, _T1, _C1, _A1>&);
1403 template<typename _K1, typename _T1, typename _C1, typename _A1>
1404 friend __detail::__synth3way_t<pair<const _K1, _T1>>
1405 operator<=>(const map<_K1, _T1, _C1, _A1>&,
1406 const map<_K1, _T1, _C1, _A1>&);
1408 template<typename _K1, typename _T1, typename _C1, typename _A1>
1410 operator<(const map<_K1, _T1, _C1, _A1>&,
1411 const map<_K1, _T1, _C
[all...]
H A Dstl_multimap.h1063 template<typename _K1, typename _T1, typename _C1, typename _A1>
1065 operator==(const multimap<_K1, _T1, _C1, _A1>&,
1066 const multimap<_K1, _T1, _C1, _A1>&);
1069 template<typename _K1, typename _T1, typename _C1, typename _A1>
1070 friend __detail::__synth3way_t<pair<const _K1, _T1>>
1071 operator<=>(const multimap<_K1, _T1, _C1, _A1>&,
1072 const multimap<_K1, _T1, _C1, _A1>&);
1074 template<typename _K1, typename _T1, typename _C1, typename _A1>
1076 operator<(const multimap<_K1, _T1, _C1, _A1>&,
1077 const multimap<_K1, _T1, _C
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/decimal/
H A Ddecimal.h55 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, _T2) \
56 inline _T1& _T1::operator _Op1(_T2 __rhs) \
62 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_INT(_Op1, _Op2, _T1, _T2) \
63 inline _T1& _T1::operator _Op1(_T2 __rhs) \
69 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENTS(_Op1, _Op2, _T1) \
70 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal32) \
71 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal64) \
72 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal12
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/decimal/
H A Ddecimal.h55 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, _T2) \
56 inline _T1& _T1::operator _Op1(_T2 __rhs) \
62 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_INT(_Op1, _Op2, _T1, _T2) \
63 inline _T1& _T1::operator _Op1(_T2 __rhs) \
69 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENTS(_Op1, _Op2, _T1) \
70 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal32) \
71 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal64) \
72 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal12
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_pair.h101 template <bool, typename _T1, typename _T2>
107 return __and_<is_constructible<_T1, const _U1&>,
114 return __and_<is_convertible<const _U1&, _T1>,
121 return __and_<is_constructible<_T1, _U1&&>,
128 return __and_<is_convertible<_U1&&, _T1>,
133 template <typename _T1, typename _T2>
134 struct _PCC<false, _T1, _T2>
166 template<typename _T1, typename _T2> friend struct pair;
179 * @tparam _T1 Type of first object.
186 template<typename _T1, typenam
[all...]
H A Drefwrap.h60 template<typename _Res, typename _T1>
61 struct _Maybe_unary_or_binary_function<_Res, _T1>
62 : std::unary_function<_T1, _Res> { };
65 template<typename _Res, typename _T1, typename _T2>
66 struct _Maybe_unary_or_binary_function<_Res, _T1, _T2>
67 : std::binary_function<_T1, _T2, _Res> { };
229 template<typename _Res, typename _T1 _GLIBCXX_NOEXCEPT_PARM>
230 struct _Reference_wrapper_base<_Res(_T1) _GLIBCXX_NOEXCEPT_QUAL>
231 : unary_function<_T1, _Res>
234 template<typename _Res, typename _T1>
[all...]
H A Dstl_construct.h122 template<typename _T1, typename _T2>
124 _Construct(_T1* __p, const _T2& __value)
128 ::new(static_cast<void*>(__p)) _T1(__value);
132 template<typename _T1>
134 _Construct_novalue(_T1* __p)
135 { ::new((void*)__p) _T1; }
H A Dallocator.h227 template<typename _T1, typename _T2>
229 operator==(const allocator<_T1>&, const allocator<_T2>&)
234 template<typename _T1, typename _T2>
236 operator!=(const allocator<_T1>&, const allocator<_T2>&)
H A Dstl_multimap.h1069 template<typename _K1, typename _T1, typename _C1, typename _A1>
1071 operator==(const multimap<_K1, _T1, _C1, _A1>&,
1072 const multimap<_K1, _T1, _C1, _A1>&);
1075 template<typename _K1, typename _T1, typename _C1, typename _A1>
1076 friend __detail::__synth3way_t<pair<const _K1, _T1>>
1077 operator<=>(const multimap<_K1, _T1, _C1, _A1>&,
1078 const multimap<_K1, _T1, _C1, _A1>&);
1080 template<typename _K1, typename _T1, typename _C1, typename _A1>
1082 operator<(const multimap<_K1, _T1, _C1, _A1>&,
1083 const multimap<_K1, _T1, _C
[all...]
H A Dstl_map.h1447 template<typename _K1, typename _T1, typename _C1, typename _A1>
1449 operator==(const map<_K1, _T1, _C1, _A1>&,
1450 const map<_K1, _T1, _C1, _A1>&);
1453 template<typename _K1, typename _T1, typename _C1, typename _A1>
1454 friend __detail::__synth3way_t<pair<const _K1, _T1>>
1455 operator<=>(const map<_K1, _T1, _C1, _A1>&,
1456 const map<_K1, _T1, _C1, _A1>&);
1458 template<typename _K1, typename _T1, typename _C1, typename _A1>
1460 operator<(const map<_K1, _T1, _C1, _A1>&,
1461 const map<_K1, _T1, _C
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/include/__memory/
H A Dcompressed_pair.h107 template <class _T1, class _T2>
108 class __compressed_pair : private __compressed_pair_elem<_T1, 0>,
115 static_assert((!is_same<_T1, _T2>::value),
120 typedef _LIBCPP_NODEBUG_TYPE __compressed_pair_elem<_T1, 0> _Base1;
125 __dependent_type<is_default_constructible<_T1>, _Dummy>::value &&
179 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
188 template <class _T1, class _T2>
190 void swap(__compressed_pair<_T1, _T2>& __x, __compressed_pair<_T1, _T2>& __y)
191 _NOEXCEPT_(__is_nothrow_swappable<_T1>
[all...]
H A Dunique_ptr.h566 template <class _T1, class _D1, class _T2, class _D2>
569 operator==(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __x.get() == __y.get();}
571 template <class _T1, class _D1, class _T2, class _D2>
574 operator!=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x == __y);}
576 template <class _T1, class _D1, class _T2, class _D2>
579 operator< (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y)
581 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
587 template <class _T1, class _D1, class _T2, class _D2>
590 operator> (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __y < __x;}
592 template <class _T1, clas
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
H A Dbase.h156 template<typename _T1, typename _T2, typename _Compare>
157 class _EqualFromLess : public std::binary_function<_T1, _T2, bool>
165 bool operator()(const _T1& __a, const _T2& __b)
243 template<typename _T1, typename _T2>
244 struct _EqualTo : std::binary_function<_T1, _T2, bool>
246 bool operator()(const _T1& __t1, const _T2& __t2) const
251 template<typename _T1, typename _T2>
252 struct _Less : std::binary_function<_T1, _T2, bool>
255 operator()(const _T1& __t1, const _T2& __t2) const
259 operator()(const _T2& __t2, const _T1
[all...]
H A Dmultiseq_selection.h52 template<typename _T1, typename _T2, typename _Compare>
54 : public std::binary_function<std::pair<_T1, _T2>,
55 std::pair<_T1, _T2>, bool>
64 operator()(const std::pair<_T1, _T2>& __p1,
65 const std::pair<_T1, _T2>& __p2) const
79 template<typename _T1, typename _T2, typename _Compare>
80 class _LexicographicReverse : public std::binary_function<_T1, _T2, bool>
89 operator()(const std::pair<_T1, _T2>& __p1,
90 const std::pair<_T1, _T2>& __p2) const
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
H A Dbase.h156 template<typename _T1, typename _T2, typename _Compare>
157 class _EqualFromLess : public std::binary_function<_T1, _T2, bool>
165 bool operator()(const _T1& __a, const _T2& __b)
243 template<typename _T1, typename _T2>
244 struct _EqualTo : std::binary_function<_T1, _T2, bool>
246 bool operator()(const _T1& __t1, const _T2& __t2) const
251 template<typename _T1, typename _T2>
252 struct _Less : std::binary_function<_T1, _T2, bool>
255 operator()(const _T1& __t1, const _T2& __t2) const
259 operator()(const _T2& __t2, const _T1
[all...]
H A Dmultiseq_selection.h52 template<typename _T1, typename _T2, typename _Compare>
54 : public std::binary_function<std::pair<_T1, _T2>,
55 std::pair<_T1, _T2>, bool>
64 operator()(const std::pair<_T1, _T2>& __p1,
65 const std::pair<_T1, _T2>& __p2) const
79 template<typename _T1, typename _T2, typename _Compare>
80 class _LexicographicReverse : public std::binary_function<_T1, _T2, bool>
89 operator()(const std::pair<_T1, _T2>& __p1,
90 const std::pair<_T1, _T2>& __p2) const
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/
H A Dxutility.d345 extern (C++, class) struct __compressed_pair(_T1, _T2)
349 enum Ty1Empty = is_empty!_T1.value;
352 ref inout(_T1) first() inout nothrow @safe @nogc { return __value1_; }
356 private inout(_T1)* __get_base1() inout { return cast(inout(_T1)*)&this; }
360 _T1 __value1_;
362 @property ref inout(_T1) __value1_() inout nothrow @trusted @nogc { return *__get_base1(); }
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/
H A Dmap.h633 template<typename _K1, typename _T1, typename _C1, typename _A1>
635 operator==(const map<_K1, _T1, _C1, _A1>&,
636 const map<_K1, _T1, _C1, _A1>&);
638 template<typename _K1, typename _T1, typename _C1, typename _A1>
640 operator<(const map<_K1, _T1, _C1, _A1>&,
641 const map<_K1, _T1, _C1, _A1>&);
H A Dmultimap.h591 template<typename _K1, typename _T1, typename _C1, typename _A1>
593 operator==(const multimap<_K1, _T1, _C1, _A1>&,
594 const multimap<_K1, _T1, _C1, _A1>&);
596 template<typename _K1, typename _T1, typename _C1, typename _A1>
598 operator<(const multimap<_K1, _T1, _C1, _A1>&,
599 const multimap<_K1, _T1, _C1, _A1>&);
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
H A Dsimd_math.h170 typename _T0, typename _T1, typename _T2, typename..., \
172 typename _U1 = __remove_cvref_t<_T1>, \
177 is_convertible<_T1&&, _Simd>, is_convertible<_T2&&, _Simd>, \
183 __name(_T0&& __xx, _T1&& __yy, _T2&& __zz) \
186 _Simd(static_cast<_T1&&>(__yy)), \
/netbsd-current/external/gpl3/gdb.old/dist/sim/testsuite/sim/or1k/
H A Dbasic.S436 OR1K_INST (l.j _T1)
444 _T1: OR1K_DELAYED ( label

Completed in 323 milliseconds

12