Home
last modified time | relevance | path

Searched refs:__right (Results 1 – 23 of 23) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/libcxx/include/__support/win32/
H A Dlocale_win32.h117 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;
133 friend bool operator==(int __left, const locale_t& __right) {
134 return __left == 0 && nullptr == __right.__locale;
137 friend bool operator==(std::nullptr_t, const locale_t& __right) {
138 return nullptr == __right.__locale;
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
H A Dlosertree.h191 unsigned int __right = __init_winner(2 * __root + 1); in __init_winner() local
192 if (_M_losers[__right]._M_sup in __init_winner()
194 && !_M_comp(_M_losers[__right]._M_key, in __init_winner()
198 _M_losers[__root] = _M_losers[__right]; in __init_winner()
205 return __right; in __init_winner()
291 unsigned int __right = __init_winner(2 * __root + 1); in __init_winner() local
292 if (_M_losers[__right]._M_sup in __init_winner()
294 && !_M_comp(_M_losers[__right]._M_key, in __init_winner()
298 _M_losers[__root] = _M_losers[__right]; in __init_winner()
305 return __right; in __init_winner()
[all …]
H A Dpartition.h70 _GLIBCXX_VOLATILE _DifferenceType __left = 0, __right = __n - 1, in __parallel_partition() local
160 __fetch_and_add(&__right, -__chunk_size); in __parallel_partition()
201 __rightold = __right, in __parallel_partition()
202 __rightnew = __right + __leftover_right * __chunk_size; in __parallel_partition()
218 __reserved_right[((__thread_right_border - 1) - __right) in __parallel_partition()
281 __right = __rightnew; 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 Dlosertree.h191 unsigned int __right = __init_winner(2 * __root + 1); in __init_winner() local
192 if (_M_losers[__right]._M_sup in __init_winner()
194 && !_M_comp(_M_losers[__right]._M_key, in __init_winner()
198 _M_losers[__root] = _M_losers[__right]; in __init_winner()
205 return __right; in __init_winner()
291 unsigned int __right = __init_winner(2 * __root + 1); in __init_winner() local
292 if (_M_losers[__right]._M_sup in __init_winner()
294 && !_M_comp(_M_losers[__right]._M_key, in __init_winner()
298 _M_losers[__root] = _M_losers[__right]; in __init_winner()
305 return __right; in __init_winner()
[all …]
H A Dpartition.h70 _GLIBCXX_VOLATILE _DifferenceType __left = 0, __right = __n - 1, in __parallel_partition() local
160 __fetch_and_add(&__right, -__chunk_size); in __parallel_partition()
201 __rightold = __right, in __parallel_partition()
202 __rightnew = __right + __leftover_right * __chunk_size; in __parallel_partition()
218 __reserved_right[((__thread_right_border - 1) - __right) in __parallel_partition()
281 __right = __rightnew; 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 Dropeimpl.h490 _S_tree_concat(_RopeRep* __left, _RopeRep* __right) in _GLIBCXX_VISIBILITY()
493 _RopeConcatenation* __result = _S_new_RopeConcatenation(__left, __right, in _GLIBCXX_VISIBILITY()
548 _RopeLeaf* __right = in _GLIBCXX_VISIBILITY() local
550 if (__right->_M_size + __slen <= size_t(_S_copy_max)) in _GLIBCXX_VISIBILITY()
554 _S_leaf_concat_char_iter((_RopeLeaf*)__right, __s, __slen); in _GLIBCXX_VISIBILITY()
613 _RopeLeaf* __right = (_RopeLeaf*)(((_RopeConcatenation*) in _GLIBCXX_VISIBILITY() local
615 if (__detail::_S_leaf == __right->_M_tag in _GLIBCXX_VISIBILITY()
616 && __right->_M_size + __slen <= size_t(_S_copy_max)) in _GLIBCXX_VISIBILITY()
619 _S_destr_leaf_concat_char_iter(__right, __s, __slen); in _GLIBCXX_VISIBILITY()
620 if (__right == __new_right) in _GLIBCXX_VISIBILITY()
[all …]
H A Drope414 const rope<_CharT, _Alloc>& __right);
418 operator+(const rope<_CharT, _Alloc>& __left, const _CharT* __right);
422 operator+(const rope<_CharT, _Alloc>& __left, _CharT __right);
1090 // __right. Assumes path_cache_len <= 9.
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);
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dropeimpl.h490 _S_tree_concat(_RopeRep* __left, _RopeRep* __right) in _GLIBCXX_VISIBILITY()
493 _RopeConcatenation* __result = _S_new_RopeConcatenation(__left, __right, in _GLIBCXX_VISIBILITY()
548 _RopeLeaf* __right = in _GLIBCXX_VISIBILITY() local
550 if (__right->_M_size + __slen <= size_t(_S_copy_max)) in _GLIBCXX_VISIBILITY()
554 _S_leaf_concat_char_iter((_RopeLeaf*)__right, __s, __slen); in _GLIBCXX_VISIBILITY()
611 _RopeLeaf* __right = (_RopeLeaf*)(((_RopeConcatenation*) in _GLIBCXX_VISIBILITY() local
613 if (__detail::_S_leaf == __right->_M_tag in _GLIBCXX_VISIBILITY()
614 && __right->_M_size + __slen <= size_t(_S_copy_max)) in _GLIBCXX_VISIBILITY()
617 _S_destr_leaf_concat_char_iter(__right, __s, __slen); in _GLIBCXX_VISIBILITY()
618 if (__right == __new_right) in _GLIBCXX_VISIBILITY()
[all …]
H A Drope426 const rope<_CharT, _Alloc>& __right);
430 operator+(const rope<_CharT, _Alloc>& __left, const _CharT* __right);
434 operator+(const rope<_CharT, _Alloc>& __left, _CharT __right);
1109 // __right. Assumes path_cache_len <= 9.
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);
[all …]
/netbsd-src/external/cddl/osnet/dist/uts/common/sys/
H A Ddebug.h103 const TYPE __right = (TYPE)(RIGHT); \
104 if (!(__left OP __right)) \
106 (uintmax_t)__left, #OP, (uintmax_t)__right, \
/netbsd-src/external/bsd/libevent/dist/WIN32-Code/
H A Dtree.h206 struct type __node, *__left, *__right, *__tmp; \
210 __left = __right = &__node; \
222 SPLAY_LINKLEFT(head, __right, field); \
235 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
243 struct type __node, *__left, *__right, *__tmp; \
246 __left = __right = &__node; \
258 SPLAY_LINKLEFT(head, __right, field); \
271 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
/netbsd-src/external/bsd/ntp/dist/sntp/libevent/WIN32-Code/
H A Dtree.h207 struct type __node, *__left, *__right, *__tmp; \
211 __left = __right = &__node; \
223 SPLAY_LINKLEFT(head, __right, field); \
236 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
244 struct type __node, *__left, *__right, *__tmp; \
247 __left = __right = &__node; \
259 SPLAY_LINKLEFT(head, __right, field); \
272 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
/netbsd-src/external/bsd/ipf/dist/sys/
H A Dtree.h208 struct type __node, *__left, *__right, *__tmp; \
212 __left = __right = &__node; \
224 SPLAY_LINKLEFT(head, __right, field); \
237 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
245 struct type __node, *__left, *__right, *__tmp; \
248 __left = __right = &__node; \
260 SPLAY_LINKLEFT(head, __right, field); \
273 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
/netbsd-src/external/mit/libuv/dist/include/uv/
H A Dtree.h212 struct type __node, *__left, *__right, *__tmp; \
216 __left = __right = &__node; \
228 SPLAY_LINKLEFT(head, __right, field); \
241 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
249 struct type __node, *__left, *__right, *__tmp; \
252 __left = __right = &__node; \
264 SPLAY_LINKLEFT(head, __right, field); \
277 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
/netbsd-src/sys/sys/
H A Dtree.h206 struct type __node, *__left, *__right, *__tmp; \
210 __left = __right = &__node; \
222 SPLAY_LINKLEFT(head, __right, field); \
235 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
243 struct type __node, *__left, *__right, *__tmp; \
246 __left = __right = &__node; \
258 SPLAY_LINKLEFT(head, __right, field); \
271 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
H A Dparallel_backend_tbb.h471 tbb::task* __right = new (tbb::task::allocate_additional_child_of(*parent())) in execute() local
473 tbb::task::spawn(*__right); in execute()
574 task* __right = new (__m->allocate_child()) in execute() local
576 tbb::task::spawn(*__right); in execute()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
H A Dsimd_fixed_size.h69 const _SimdTuple<_Tp, _A1s...>& __right)
72 return __right;
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}; }
1406 auto __right = __tup.template _M_simd_at<2 * __i + 1>();
1408 using _RT = decltype(__right);
1410 return __binary_op(__left, __right);
1421 = __proposed::resizing_simd_cast<_LT>(__right);
/netbsd-src/external/cddl/osnet/dist/lib/libuutil/common/
H A Dlibuutil.h166 typedef int uu_compare_fn_t(const void *__left, const void *__right,
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dparallel_backend_tbb.h1145 auto __right = __self->make_child_of( in operator() local
1147 __self->spawn(__right); in operator()
1238 auto __right = __self->make_additional_child_of( in operator() local
1240 __self->spawn(__right); in operator()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_algo.h2168 _ForwardIterator __right in _GLIBCXX_VISIBILITY() local
2170 return pair<_ForwardIterator, _ForwardIterator>(__left, __right); in _GLIBCXX_VISIBILITY()
H A Dranges_algo.h2413 auto __right in _GLIBCXX_VISIBILITY() local
2416 return {__left, __right}; in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_algo.h2132 _ForwardIterator __right in _GLIBCXX_VISIBILITY() local
2134 return pair<_ForwardIterator, _ForwardIterator>(__left, __right); in _GLIBCXX_VISIBILITY()
H A Dranges_algo.h2205 auto __right in _GLIBCXX_VISIBILITY() local
2208 return {__left, __right}; in _GLIBCXX_VISIBILITY()