Home
last modified time | relevance | path

Searched refs:__t (Results 76 – 100 of 4387) sorted by relevance

12345678910>>...176

/dports/lang/gcc9-aux/gcc-9.1.0/libstdc++-v3/include/tr2/
H A Dbool_set62 constexpr bool_set(bool __t) : _M_b(_Bool_set_val(__t)) { }
115 { return __s._M_xor(__t); }
119 { return __s._M_or(__t); }
123 { return __s._M_and(__t); }
127 { return __s._M_eq(__t); }
211 { return __s.equals(__t); }
246 { return __s | __t; }
258 { return __s & __t; }
304 { return ! (__s == __t); }
308 { return ! (__s == __t); }
[all …]
/dports/lang/gcc6-aux/bootstrap/include/c++/5.1.0/tr2/
H A Dbool_set62 constexpr bool_set(bool __t) : _M_b(_Bool_set_val(__t)) { }
115 { return __s._M_xor(__t); }
119 { return __s._M_or(__t); }
123 { return __s._M_and(__t); }
127 { return __s._M_eq(__t); }
211 { return __s.equals(__t); }
246 { return __s | __t; }
258 { return __s & __t; }
304 { return ! (__s == __t); }
308 { return ! (__s == __t); }
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/libstdc++-v3/include/bits/
H A Drange_cmp.h51 operator()(_Tp&& __t) const noexcept in _GLIBCXX_VISIBILITY()
52 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY()
68 = requires (_Tp&& __t, _Up&& __u) { { __t == __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY()
71 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
74 ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
80 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY()
83 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
85 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
98 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
112 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/include/
H A Dbit214 return __t;
215 return (__t << (__cnt % __dig)) | (__t >> (__dig - (__cnt % __dig)));
226 return __t;
227 return (__t >> (__cnt % __dig)) | (__t << (__dig - (__cnt % __dig)));
237 if (__t == 0)
265 if (__t == 0)
283 __t = __rotr(__t, __ulldigits);
353 return __t != 0 && (((__t & (__t - 1)) == 0));
436 return __t == 0 ? 0 : _Tp{1} << __bit_log2(__t);
442 ceil2(_Tp __t) noexcept
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/include/
H A Dbit214 return __t;
215 return (__t << (__cnt % __dig)) | (__t >> (__dig - (__cnt % __dig)));
226 return __t;
227 return (__t >> (__cnt % __dig)) | (__t << (__dig - (__cnt % __dig)));
237 if (__t == 0)
265 if (__t == 0)
283 __t = __rotr(__t, __ulldigits);
353 return __t != 0 && (((__t & (__t - 1)) == 0));
436 return __t == 0 ? 0 : _Tp{1} << __bit_log2(__t);
442 ceil2(_Tp __t) noexcept
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libcxx/include/
H A Dbit215 return __t;
216 return (__t << (__cnt % __dig)) | (__t >> (__dig - (__cnt % __dig)));
227 return __t;
228 return (__t >> (__cnt % __dig)) | (__t << (__dig - (__cnt % __dig)));
238 if (__t == 0)
266 if (__t == 0)
284 __t = __rotr(__t, __ulldigits);
354 return __t != 0 && (((__t & (__t - 1)) == 0));
437 return __t == 0 ? 0 : _Tp{1} << __bit_log2(__t);
443 ceil2(_Tp __t) noexcept
[all …]
/dports/devel/libc++/libcxx-10.0.1.src/include/
H A Dbit214 return __t;
215 return (__t << (__cnt % __dig)) | (__t >> (__dig - (__cnt % __dig)));
226 return __t;
227 return (__t >> (__cnt % __dig)) | (__t << (__dig - (__cnt % __dig)));
237 if (__t == 0)
265 if (__t == 0)
283 __t = __rotr(__t, __ulldigits);
353 return __t != 0 && (((__t & (__t - 1)) == 0));
436 return __t == 0 ? 0 : _Tp{1} << __bit_log2(__t);
442 ceil2(_Tp __t) noexcept
[all …]
/dports/devel/emscripten/emscripten-2.0.3/system/include/libcxx/
H A Dbit214 return __t;
215 return (__t << (__cnt % __dig)) | (__t >> (__dig - (__cnt % __dig)));
226 return __t;
227 return (__t >> (__cnt % __dig)) | (__t << (__dig - (__cnt % __dig)));
237 if (__t == 0)
265 if (__t == 0)
283 __t = __rotr(__t, __ulldigits);
353 return __t != 0 && (((__t & (__t - 1)) == 0));
436 return __t == 0 ? 0 : _Tp{1} << __bit_log2(__t);
442 ceil2(_Tp __t) noexcept
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/include/
H A Dbit215 return __t;
216 return (__t << (__cnt % __dig)) | (__t >> (__dig - (__cnt % __dig)));
227 return __t;
228 return (__t >> (__cnt % __dig)) | (__t << (__dig - (__cnt % __dig)));
238 if (__t == 0)
266 if (__t == 0)
284 __t = __rotr(__t, __ulldigits);
354 return __t != 0 && (((__t & (__t - 1)) == 0));
437 return __t == 0 ? 0 : _Tp{1} << __bit_log2(__t);
443 ceil2(_Tp __t) noexcept
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/include/__utility/
H A Dcmp.h44 bool cmp_equal(_Tp __t, _Up __u) noexcept in cmp_equal() argument
47 return __t == __u; in cmp_equal()
49 return __t < 0 ? false : make_unsigned_t<_Tp>(__t) == __u; in cmp_equal()
58 return !_VSTD::cmp_equal(__t, __u); in cmp_not_equal()
63 bool cmp_less(_Tp __t, _Up __u) noexcept in cmp_less() argument
66 return __t < __u; in cmp_less()
68 return __t < 0 ? true : make_unsigned_t<_Tp>(__t) < __u; in cmp_less()
75 bool cmp_greater(_Tp __t, _Up __u) noexcept in cmp_greater() argument
77 return _VSTD::cmp_less(__u, __t); in cmp_greater()
84 return !_VSTD::cmp_greater(__t, __u); in cmp_less_equal()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/include/__utility/
H A Dcmp.h47 bool cmp_equal(_Tp __t, _Up __u) noexcept in cmp_equal() argument
50 return __t == __u; in cmp_equal()
52 return __t < 0 ? false : make_unsigned_t<_Tp>(__t) == __u; in cmp_equal()
61 return !_VSTD::cmp_equal(__t, __u); in cmp_not_equal()
66 bool cmp_less(_Tp __t, _Up __u) noexcept in cmp_less() argument
69 return __t < __u; in cmp_less()
71 return __t < 0 ? true : make_unsigned_t<_Tp>(__t) < __u; in cmp_less()
78 bool cmp_greater(_Tp __t, _Up __u) noexcept in cmp_greater() argument
80 return _VSTD::cmp_less(__u, __t); in cmp_greater()
87 return !_VSTD::cmp_greater(__t, __u); in cmp_less_equal()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/include/__utility/
H A Dcmp.h44 bool cmp_equal(_Tp __t, _Up __u) noexcept in cmp_equal() argument
47 return __t == __u; in cmp_equal()
49 return __t < 0 ? false : make_unsigned_t<_Tp>(__t) == __u; in cmp_equal()
58 return !_VSTD::cmp_equal(__t, __u); in cmp_not_equal()
63 bool cmp_less(_Tp __t, _Up __u) noexcept in cmp_less() argument
66 return __t < __u; in cmp_less()
68 return __t < 0 ? true : make_unsigned_t<_Tp>(__t) < __u; in cmp_less()
75 bool cmp_greater(_Tp __t, _Up __u) noexcept in cmp_greater() argument
77 return _VSTD::cmp_less(__u, __t); in cmp_greater()
84 return !_VSTD::cmp_greater(__t, __u); in cmp_less_equal()
[all …]
/dports/lang/zig/zig-0.9.0/lib/libcxx/include/__utility/
H A Dcmp.h44 bool cmp_equal(_Tp __t, _Up __u) noexcept in cmp_equal() argument
47 return __t == __u; in cmp_equal()
49 return __t < 0 ? false : make_unsigned_t<_Tp>(__t) == __u; in cmp_equal()
58 return !_VSTD::cmp_equal(__t, __u); in cmp_not_equal()
63 bool cmp_less(_Tp __t, _Up __u) noexcept in cmp_less() argument
66 return __t < __u; in cmp_less()
68 return __t < 0 ? true : make_unsigned_t<_Tp>(__t) < __u; in cmp_less()
75 bool cmp_greater(_Tp __t, _Up __u) noexcept in cmp_greater() argument
77 return _VSTD::cmp_less(__u, __t); in cmp_greater()
84 return !_VSTD::cmp_greater(__t, __u); in cmp_less_equal()
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libcxx/include/__utility/
H A Dcmp.h44 bool cmp_equal(_Tp __t, _Up __u) noexcept in cmp_equal() argument
47 return __t == __u; in cmp_equal()
49 return __t < 0 ? false : make_unsigned_t<_Tp>(__t) == __u; in cmp_equal()
58 return !_VSTD::cmp_equal(__t, __u); in cmp_not_equal()
63 bool cmp_less(_Tp __t, _Up __u) noexcept in cmp_less() argument
66 return __t < __u; in cmp_less()
68 return __t < 0 ? true : make_unsigned_t<_Tp>(__t) < __u; in cmp_less()
75 bool cmp_greater(_Tp __t, _Up __u) noexcept in cmp_greater() argument
77 return _VSTD::cmp_less(__u, __t); in cmp_greater()
84 return !_VSTD::cmp_greater(__t, __u); in cmp_less_equal()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/include/__utility/
H A Dcmp.h44 bool cmp_equal(_Tp __t, _Up __u) noexcept in cmp_equal() argument
47 return __t == __u; in cmp_equal()
49 return __t < 0 ? false : make_unsigned_t<_Tp>(__t) == __u; in cmp_equal()
58 return !_VSTD::cmp_equal(__t, __u); in cmp_not_equal()
63 bool cmp_less(_Tp __t, _Up __u) noexcept in cmp_less() argument
66 return __t < __u; in cmp_less()
68 return __t < 0 ? true : make_unsigned_t<_Tp>(__t) < __u; in cmp_less()
75 bool cmp_greater(_Tp __t, _Up __u) noexcept in cmp_greater() argument
77 return _VSTD::cmp_less(__u, __t); in cmp_greater()
84 return !_VSTD::cmp_greater(__t, __u); in cmp_less_equal()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/include/bits/
H A Dranges_cmp.h52 operator()(_Tp&& __t) const noexcept in _GLIBCXX_VISIBILITY()
53 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY()
71 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY()
74 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
76 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
91 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
104 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
117 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
123 return __t < __u; in _GLIBCXX_VISIBILITY()
144 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
[all …]
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/include/bits/
H A Drange_cmp.h51 operator()(_Tp&& __t) const noexcept
52 { return std::forward<_Tp>(__t); }
70 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; }
73 && (! requires(_Tp&& __t, _Up&& __u)
75 && ! requires(_Tp&& __t, _Up&& __u)
90 operator()(_Tp&& __t, _Up&& __u) const
103 operator()(_Tp&& __t, _Up&& __u) const
116 operator()(_Tp&& __t, _Up&& __u) const
123 return __t < __u;
144 operator()(_Tp&& __t, _Up&& __u) const
[all …]
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/include/bits/
H A Dranges_cmp.h52 operator()(_Tp&& __t) const noexcept in _GLIBCXX_VISIBILITY()
53 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY()
71 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY()
74 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
76 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
91 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
104 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
117 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
124 return __t < __u; in _GLIBCXX_VISIBILITY()
145 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/include/bits/
H A Dranges_cmp.h52 operator()(_Tp&& __t) const noexcept in _GLIBCXX_VISIBILITY()
53 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY()
71 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY()
74 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
76 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
91 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
104 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
117 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
124 return __t < __u; in _GLIBCXX_VISIBILITY()
145 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libstdc++-v3/include/bits/
H A Dranges_cmp.h52 operator()(_Tp&& __t) const noexcept in _GLIBCXX_VISIBILITY()
53 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY()
71 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY()
74 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
76 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
91 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
104 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
117 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
124 return __t < __u; in _GLIBCXX_VISIBILITY()
145 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
[all …]
/dports/lang/gcc10-devel/gcc-10-20211008/libstdc++-v3/include/bits/
H A Drange_cmp.h51 operator()(_Tp&& __t) const noexcept in _GLIBCXX_VISIBILITY()
52 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY()
70 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY()
73 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
75 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY()
90 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
103 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
116 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
123 return __t < __u; in _GLIBCXX_VISIBILITY()
144 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/include/__ranges/
H A Dall.h42 constexpr auto operator()(_Tp&& __t) const in operator()
45 return _VSTD::forward<_Tp>(__t); in operator()
50 requires (_Tp&& __t) { ranges::ref_view{_VSTD::forward<_Tp>(__t)}; } in requires()
52 constexpr auto operator()(_Tp&& __t) const in operator()
53 noexcept(noexcept(ranges::ref_view{_VSTD::forward<_Tp>(__t)})) in operator()
55 return ranges::ref_view{_VSTD::forward<_Tp>(__t)};
60 !requires (_Tp&& __t) { ranges::ref_view{_VSTD::forward<_Tp>(__t)}; } &&
61 requires (_Tp&& __t) { ranges::subrange{_VSTD::forward<_Tp>(__t)}; })
63 constexpr auto operator()(_Tp&& __t) const in operator()
64 noexcept(noexcept(ranges::subrange{_VSTD::forward<_Tp>(__t)})) in operator()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/include/__ranges/
H A Dall.h40 constexpr auto operator()(_Tp&& __t) const in operator()
43 return _VSTD::forward<_Tp>(__t); in operator()
48 requires (_Tp&& __t) { ranges::ref_view{_VSTD::forward<_Tp>(__t)}; } in requires()
50 constexpr auto operator()(_Tp&& __t) const in operator()
51 noexcept(noexcept(ranges::ref_view{_VSTD::forward<_Tp>(__t)})) in operator()
53 return ranges::ref_view{_VSTD::forward<_Tp>(__t)};
58 !requires (_Tp&& __t) { ranges::ref_view{_VSTD::forward<_Tp>(__t)}; } &&
59 requires (_Tp&& __t) { ranges::subrange{_VSTD::forward<_Tp>(__t)}; })
61 constexpr auto operator()(_Tp&& __t) const in operator()
62 noexcept(noexcept(ranges::subrange{_VSTD::forward<_Tp>(__t)})) in operator()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/include/__ranges/
H A Dall.h42 constexpr auto operator()(_Tp&& __t) const in operator()
45 return _VSTD::forward<_Tp>(__t); in operator()
50 requires (_Tp&& __t) { ranges::ref_view{_VSTD::forward<_Tp>(__t)}; } in requires()
52 constexpr auto operator()(_Tp&& __t) const in operator()
53 noexcept(noexcept(ranges::ref_view{_VSTD::forward<_Tp>(__t)})) in operator()
55 return ranges::ref_view{_VSTD::forward<_Tp>(__t)};
60 !requires (_Tp&& __t) { ranges::ref_view{_VSTD::forward<_Tp>(__t)}; } &&
61 requires (_Tp&& __t) { ranges::subrange{_VSTD::forward<_Tp>(__t)}; })
63 constexpr auto operator()(_Tp&& __t) const in operator()
64 noexcept(noexcept(ranges::subrange{_VSTD::forward<_Tp>(__t)})) in operator()
[all …]
/dports/lang/zig/zig-0.9.0/lib/libcxx/include/__ranges/
H A Dall.h42 constexpr auto operator()(_Tp&& __t) const in operator()
45 return _VSTD::forward<_Tp>(__t); in operator()
50 requires (_Tp&& __t) { ranges::ref_view{_VSTD::forward<_Tp>(__t)}; } in requires()
52 constexpr auto operator()(_Tp&& __t) const in operator()
53 noexcept(noexcept(ranges::ref_view{_VSTD::forward<_Tp>(__t)})) in operator()
55 return ranges::ref_view{_VSTD::forward<_Tp>(__t)};
60 !requires (_Tp&& __t) { ranges::ref_view{_VSTD::forward<_Tp>(__t)}; } &&
61 requires (_Tp&& __t) { ranges::subrange{_VSTD::forward<_Tp>(__t)}; })
63 constexpr auto operator()(_Tp&& __t) const in operator()
64 noexcept(noexcept(ranges::subrange{_VSTD::forward<_Tp>(__t)})) in operator()
[all …]

12345678910>>...176