| /netbsd-src/external/apache2/llvm/dist/libcxx/include/__support/win32/ |
| H A D | locale_win32.h | 117 friend bool operator==(const locale_t& __left, const locale_t& __right) { 118 return __left.__locale == __right.__locale; 121 friend bool operator==(const locale_t& __left, int __right) { 122 return __left.__locale == nullptr && __right == 0; 125 friend bool operator==(const locale_t& __left, long long __right) { 126 return __left.__locale == nullptr && __right == 0; 129 friend bool operator==(const locale_t& __left, std::nullptr_t) { 130 return __left.__locale == nullptr; 133 friend bool operator==(int __left, const locale_t& __right) { 134 return __left == 0 && nullptr == __right.__locale; [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/ |
| H A D | losertree.h | 190 unsigned int __left = __init_winner(2 * __root); in __init_winner() local 193 || (!_M_losers[__left]._M_sup in __init_winner() 195 _M_losers[__left]._M_key))) in __init_winner() 199 return __left; in __init_winner() 204 _M_losers[__root] = _M_losers[__left]; in __init_winner() 290 unsigned int __left = __init_winner(2 * __root); in __init_winner() local 293 || (!_M_losers[__left]._M_sup in __init_winner() 295 _M_losers[__left]._M_key))) in __init_winner() 299 return __left; in __init_winner() 304 _M_losers[__root] = _M_losers[__left]; in __init_winner() [all …]
|
| H A D | partition.h | 70 _GLIBCXX_VOLATILE _DifferenceType __left = 0, __right = __n - 1, in __parallel_partition() local 117 __thread_left = __left + 1; in __parallel_partition() 141 __fetch_and_add(&__left, __chunk_size); in __parallel_partition() 199 __leftold = __left, in __parallel_partition() 200 __leftnew = __left - __leftover_left * __chunk_size, in __parallel_partition() 209 __reserved_left[(__left - (__thread_left_border + 1)) in __parallel_partition() 280 __left = __leftnew; in __parallel_partition() 282 __dist = __right - __left + 1; in __parallel_partition() 285 # pragma omp flush(__left, __right) in __parallel_partition() 288 _DifferenceType __final_left = __left, __final_right = __right; in __parallel_partition()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/ |
| H A D | losertree.h | 190 unsigned int __left = __init_winner(2 * __root); in __init_winner() local 193 || (!_M_losers[__left]._M_sup in __init_winner() 195 _M_losers[__left]._M_key))) in __init_winner() 199 return __left; in __init_winner() 204 _M_losers[__root] = _M_losers[__left]; in __init_winner() 290 unsigned int __left = __init_winner(2 * __root); in __init_winner() local 293 || (!_M_losers[__left]._M_sup in __init_winner() 295 _M_losers[__left]._M_key))) in __init_winner() 299 return __left; in __init_winner() 304 _M_losers[__root] = _M_losers[__left]; in __init_winner() [all …]
|
| H A D | partition.h | 70 _GLIBCXX_VOLATILE _DifferenceType __left = 0, __right = __n - 1, in __parallel_partition() local 117 __thread_left = __left + 1; in __parallel_partition() 141 __fetch_and_add(&__left, __chunk_size); in __parallel_partition() 199 __leftold = __left, in __parallel_partition() 200 __leftnew = __left - __leftover_left * __chunk_size, in __parallel_partition() 209 __reserved_left[(__left - (__thread_left_border + 1)) in __parallel_partition() 280 __left = __leftnew; in __parallel_partition() 282 __dist = __right - __left + 1; in __parallel_partition() 285 # pragma omp flush(__left, __right) in __parallel_partition() 288 _DifferenceType __final_left = __left, __final_right = __right; in __parallel_partition()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| H A D | ropeimpl.h | 150 _RopeRep* __left = __c->_M_left; in _GLIBCXX_VISIBILITY() local 151 size_t __left_len = __left->_M_size; in _GLIBCXX_VISIBILITY() 161 __curr_rope = __left; in _GLIBCXX_VISIBILITY() 490 _S_tree_concat(_RopeRep* __left, _RopeRep* __right) in _GLIBCXX_VISIBILITY() 493 _RopeConcatenation* __result = _S_new_RopeConcatenation(__left, __right, in _GLIBCXX_VISIBILITY() 494 __left-> in _GLIBCXX_VISIBILITY() 552 _RopeRep* __left = ((_RopeConcatenation*)__r)->_M_left; in _GLIBCXX_VISIBILITY() local 555 __left->_M_ref_nonnil(); in _GLIBCXX_VISIBILITY() 557 { __result = _S_tree_concat(__left, __nright); } in _GLIBCXX_VISIBILITY() 560 _S_unref(__left); in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | rope | 413 operator+(const rope<_CharT, _Alloc>& __left, 418 operator+(const rope<_CharT, _Alloc>& __left, const _CharT* __right); 422 operator+(const rope<_CharT, _Alloc>& __left, _CharT __right); 1632 static _RopeRep* _S_concat(_RopeRep* __left, _RopeRep* __right); 1669 _S_new_RopeConcatenation(_RopeRep* __left, _RopeRep* __right, 1673 return new(__space) _RopeConcatenation(__left, __right, __a); 1720 _S_tree_concat(_RopeRep* __left, _RopeRep* __right); 1775 _S_concat_and_set_balanced(_RopeRep* __left, _RopeRep* __right) 1777 _RopeRep* __result = _S_concat(__left, __right); 1939 _RopeRep* __left = [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| H A D | ropeimpl.h | 150 _RopeRep* __left = __c->_M_left; in _GLIBCXX_VISIBILITY() local 151 size_t __left_len = __left->_M_size; in _GLIBCXX_VISIBILITY() 161 __curr_rope = __left; in _GLIBCXX_VISIBILITY() 490 _S_tree_concat(_RopeRep* __left, _RopeRep* __right) in _GLIBCXX_VISIBILITY() 493 _RopeConcatenation* __result = _S_new_RopeConcatenation(__left, __right, in _GLIBCXX_VISIBILITY() 494 __left-> in _GLIBCXX_VISIBILITY() 552 _RopeRep* __left = ((_RopeConcatenation*)__r)->_M_left; in _GLIBCXX_VISIBILITY() local 555 __left->_M_ref_nonnil(); in _GLIBCXX_VISIBILITY() 557 { __result = _S_tree_concat(__left, __nright); } in _GLIBCXX_VISIBILITY() 560 _S_unref(__left); in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | rope | 425 operator+(const rope<_CharT, _Alloc>& __left, 430 operator+(const rope<_CharT, _Alloc>& __left, const _CharT* __right); 434 operator+(const rope<_CharT, _Alloc>& __left, _CharT __right); 1654 static _RopeRep* _S_concat(_RopeRep* __left, _RopeRep* __right); 1691 _S_new_RopeConcatenation(_RopeRep* __left, _RopeRep* __right, 1695 return new(__space) _RopeConcatenation(__left, __right, __a); 1742 _S_tree_concat(_RopeRep* __left, _RopeRep* __right); 1797 _S_concat_and_set_balanced(_RopeRep* __left, _RopeRep* __right) 1799 _RopeRep* __result = _S_concat(__left, __right); 1962 _RopeRep* __left = [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| H A D | ostream_insert.h | 93 const bool __left = ((__out.flags() in _GLIBCXX_VISIBILITY() local 96 if (!__left) in _GLIBCXX_VISIBILITY() 100 if (__left && __out.good()) in _GLIBCXX_VISIBILITY()
|
| H A D | cow_string.h | 3340 bool __left; in _GLIBCXX_VISIBILITY() local 3343 else if ((__left = __s + __n2 <= _M_data() + __pos) in _GLIBCXX_VISIBILITY() 3348 __left ? __off : (__off += __n2 - __n1); in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| H A D | ostream_insert.h | 90 const bool __left = ((__out.flags() in _GLIBCXX_VISIBILITY() local 93 if (!__left) in _GLIBCXX_VISIBILITY() 97 if (__left && __out.good()) in _GLIBCXX_VISIBILITY()
|
| H A D | basic_string.tcc | 865 bool __left; 868 else if ((__left = __s + __n2 <= _M_data() + __pos) 873 __left ? __off : (__off += __n2 - __n1);
|
| H A D | stl_algo.h | 2165 _ForwardIterator __left in _GLIBCXX_VISIBILITY() local 2170 return pair<_ForwardIterator, _ForwardIterator>(__left, __right); in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/sys/ |
| H A D | debug.h | 102 const TYPE __left = (TYPE)(LEFT); \ 104 if (!(__left OP __right)) \ 106 (uintmax_t)__left, #OP, (uintmax_t)__right, \
|
| /netbsd-src/external/bsd/libevent/dist/WIN32-Code/ |
| H A D | tree.h | 206 struct type __node, *__left, *__right, *__tmp; \ 210 __left = __right = &__node; \ 232 SPLAY_LINKRIGHT(head, __left, field); \ 235 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ 243 struct type __node, *__left, *__right, *__tmp; \ 246 __left = __right = &__node; \ 268 SPLAY_LINKRIGHT(head, __left, field); \ 271 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
|
| /netbsd-src/external/bsd/ntp/dist/sntp/libevent/WIN32-Code/ |
| H A D | tree.h | 207 struct type __node, *__left, *__right, *__tmp; \ 211 __left = __right = &__node; \ 233 SPLAY_LINKRIGHT(head, __left, field); \ 236 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ 244 struct type __node, *__left, *__right, *__tmp; \ 247 __left = __right = &__node; \ 269 SPLAY_LINKRIGHT(head, __left, field); \ 272 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
|
| /netbsd-src/external/bsd/ipf/dist/sys/ |
| H A D | tree.h | 208 struct type __node, *__left, *__right, *__tmp; \ 212 __left = __right = &__node; \ 234 SPLAY_LINKRIGHT(head, __left, field); \ 237 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ 245 struct type __node, *__left, *__right, *__tmp; \ 248 __left = __right = &__node; \ 270 SPLAY_LINKRIGHT(head, __left, field); \ 273 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
|
| /netbsd-src/external/mit/libuv/dist/include/uv/ |
| H A D | tree.h | 212 struct type __node, *__left, *__right, *__tmp; \ 216 __left = __right = &__node; \ 238 SPLAY_LINKRIGHT(head, __left, field); \ 241 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ 249 struct type __node, *__left, *__right, *__tmp; \ 252 __left = __right = &__node; \ 274 SPLAY_LINKRIGHT(head, __left, field); \ 277 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
|
| /netbsd-src/sys/sys/ |
| H A D | tree.h | 206 struct type __node, *__left, *__right, *__tmp; \ 210 __left = __right = &__node; \ 232 SPLAY_LINKRIGHT(head, __left, field); \ 235 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ 243 struct type __node, *__left, *__right, *__tmp; \ 246 __left = __right = &__node; \ 268 SPLAY_LINKRIGHT(head, __left, field); \ 271 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/ |
| H A D | simd_fixed_size.h | 68 __simd_tuple_concat(const _SimdTuple<_Tp, _A0s...>& __left, 74 return __left; 76 return {__left.first, __simd_tuple_concat(__left.second, __right)}; 81 __simd_tuple_concat(const _Tp& __left, const _SimdTuple<_Tp, _A10, _A1s...>& __right) 82 { return {__left, __right}; } 1401 auto __left = __tup.template _M_simd_at<2 * __i>(); 1403 return __left; 1407 using _LT = decltype(__left); 1410 return __binary_op(__left, __right); 1419 _LT __ext_right = __left; [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/ |
| H A D | parallel_backend_tbb.h | 150 __par_trans_red_body(__par_trans_red_body& __left, tbb::split) in __par_trans_red_body() 151 …: _M_brick_reduce(__left._M_brick_reduce), _M_u(__left._M_u), _M_combine(__left._M_combine), _M_ha… in __par_trans_red_body()
|
| /netbsd-src/external/cddl/osnet/dist/lib/libuutil/common/ |
| H A D | libuutil.h | 166 typedef int uu_compare_fn_t(const void *__left, const void *__right,
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/ |
| H A D | parallel_backend_tbb.h | 155 __par_trans_red_body(__par_trans_red_body& __left, tbb::split) in __par_trans_red_body() 156 …: _M_brick_reduce(__left._M_brick_reduce), _M_u(__left._M_u), _M_combine(__left._M_combine), _M_ha… in __par_trans_red_body()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/ |
| H A D | string.d | 1095 bool __left; in version() local 1098 … else if ((__left = __s + __n2 <= _M_data + __pos) == true || _M_data + __pos + __n1 <= __s) in version() 1102 __left ? __off : (__off += __n2 - __n1); in version()
|