| /dragonfly/contrib/gcc-4.7/libstdc++-v3/src/c++98/ |
| D | tree.cc | 369 _Rb_tree_node_base* __w = __x_parent->_M_right; in _Rb_tree_rebalance_for_erase() local 370 if (__w->_M_color == _S_red) in _Rb_tree_rebalance_for_erase() 372 __w->_M_color = _S_black; in _Rb_tree_rebalance_for_erase() 375 __w = __x_parent->_M_right; in _Rb_tree_rebalance_for_erase() 377 if ((__w->_M_left == 0 || in _Rb_tree_rebalance_for_erase() 378 __w->_M_left->_M_color == _S_black) && in _Rb_tree_rebalance_for_erase() 379 (__w->_M_right == 0 || in _Rb_tree_rebalance_for_erase() 380 __w->_M_right->_M_color == _S_black)) in _Rb_tree_rebalance_for_erase() 382 __w->_M_color = _S_red; in _Rb_tree_rebalance_for_erase() 388 if (__w->_M_right == 0 in _Rb_tree_rebalance_for_erase() [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++98/ |
| D | tree.cc | 369 _Rb_tree_node_base* __w = __x_parent->_M_right; in _Rb_tree_rebalance_for_erase() local 370 if (__w->_M_color == _S_red) in _Rb_tree_rebalance_for_erase() 372 __w->_M_color = _S_black; in _Rb_tree_rebalance_for_erase() 375 __w = __x_parent->_M_right; in _Rb_tree_rebalance_for_erase() 377 if ((__w->_M_left == 0 || in _Rb_tree_rebalance_for_erase() 378 __w->_M_left->_M_color == _S_black) && in _Rb_tree_rebalance_for_erase() 379 (__w->_M_right == 0 || in _Rb_tree_rebalance_for_erase() 380 __w->_M_right->_M_color == _S_black)) in _Rb_tree_rebalance_for_erase() 382 __w->_M_color = _S_red; in _Rb_tree_rebalance_for_erase() 388 if (__w->_M_right == 0 in _Rb_tree_rebalance_for_erase() [all …]
|
| D | istream-string.cc | 61 const streamsize __w = __in.width(); in operator >>() 62 const __size_type __n = __w > 0 ? static_cast<__size_type>(__w) in operator >>()
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
| D | shared_ptr_atomic.h | 222 shared_ptr<_Tp> __w, in _GLIBCXX_VISIBILITY() 232 *__p = std::move(__w); in _GLIBCXX_VISIBILITY() 243 shared_ptr<_Tp> __w) in _GLIBCXX_VISIBILITY() 246 std::move(__w), memory_order_seq_cst, memory_order_seq_cst); in _GLIBCXX_VISIBILITY() 253 shared_ptr<_Tp> __w, in _GLIBCXX_VISIBILITY() 258 std::move(__w), __success, __failure); in _GLIBCXX_VISIBILITY() 264 shared_ptr<_Tp> __w) in _GLIBCXX_VISIBILITY() 267 std::move(__w), memory_order_seq_cst, memory_order_seq_cst); in _GLIBCXX_VISIBILITY() 274 __shared_ptr<_Tp, _Lp> __w, in _GLIBCXX_VISIBILITY() 284 *__p = std::move(__w); in _GLIBCXX_VISIBILITY() [all …]
|
| D | random.tcc | 192 size_t __w, size_t __n, size_t __m, size_t __r, 197 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, 201 size_t __w, size_t __n, size_t __m, size_t __r, 206 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, 210 size_t __w, size_t __n, size_t __m, size_t __r, 215 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, 219 size_t __w, size_t __n, size_t __m, size_t __r, 224 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, 228 size_t __w, size_t __n, size_t __m, size_t __r, 233 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, [all …]
|
| D | ostream_insert.h | 87 const streamsize __w = __out.width(); in _GLIBCXX_VISIBILITY() local 88 if (__w > __n) in _GLIBCXX_VISIBILITY() 94 __ostream_fill(__out, __w - __n); in _GLIBCXX_VISIBILITY() 98 __ostream_fill(__out, __w - __n); in _GLIBCXX_VISIBILITY()
|
| D | locale_facets.tcc | 780 _M_pad(_CharT __fill, streamsize __w, ios_base& __io, in _M_pad() argument 786 __cs, __w, __len); in _M_pad() 787 __len = static_cast<int>(__w); in _M_pad() 921 const streamsize __w = __io.width(); in _M_insert_int() local 922 if (__w > static_cast<streamsize>(__len)) in _M_insert_int() 925 * __w)); in _M_insert_int() 926 _M_pad(__fill, __w, __io, __cs3, __cs, __len); in _M_insert_int() 1088 const streamsize __w = __io.width(); in _M_insert_float() local 1089 if (__w > static_cast<streamsize>(__len)) in _M_insert_float() 1092 * __w)); in _M_insert_float() [all …]
|
| D | random.h | 66 template<typename _UIntType, size_t __w, in _GLIBCXX_VISIBILITY() 67 bool = __w < static_cast<size_t> in _GLIBCXX_VISIBILITY() 72 template<typename _UIntType, size_t __w> in _GLIBCXX_VISIBILITY() 73 struct _Shift<_UIntType, __w, true> in _GLIBCXX_VISIBILITY() 74 { static const _UIntType __value = _UIntType(1) << __w; }; in _GLIBCXX_VISIBILITY() 432 template<typename _UIntType, size_t __w, in _GLIBCXX_VISIBILITY() 443 static_assert(__r <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() 445 static_assert(__u <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() 447 static_assert(__s <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() 449 static_assert(__t <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() [all …]
|
| D | valarray_after.h | 342 const _Expr<_Dom2, typename _Dom2::value_type>& __w) \ in _GLIBCXX_VISIBILITY() 347 return _Expr<_Closure, _Value>(_Closure(__v(), __w())); \ in _GLIBCXX_VISIBILITY() 521 _Fun(const valarray<_Tp>& __v, const valarray<_Tp>& __w) \ in _GLIBCXX_VISIBILITY() 524 return _Expr<_Closure, _Tp>(_Closure(__v, __w)); \ in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/ |
| D | random.tcc | 197 template<class _UIntType, int __w, int __n, int __m, int __r, 201 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 204 template<class _UIntType, int __w, int __n, int __m, int __r, 208 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 211 template<class _UIntType, int __w, int __n, int __m, int __r, 215 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 218 template<class _UIntType, int __w, int __n, int __m, int __r, 222 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 225 template<class _UIntType, int __w, int __n, int __m, int __r, 229 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, [all …]
|
| D | random.h | 55 template<typename _UIntType, int __w, in _GLIBCXX_VISIBILITY() 56 bool = __w < std::numeric_limits<_UIntType>::digits> in _GLIBCXX_VISIBILITY() 60 template<typename _UIntType, int __w> in _GLIBCXX_VISIBILITY() 61 struct _Shift<_UIntType, __w, true> in _GLIBCXX_VISIBILITY() 62 { static const _UIntType __value = _UIntType(1) << __w; }; in _GLIBCXX_VISIBILITY() 547 template<class _UIntType, int __w, int __n, int __m, int __r, in _GLIBCXX_VISIBILITY() 559 static const int word_size = __w; in _GLIBCXX_VISIBILITY() 601 { return __detail::_Shift<_UIntType, __w>::__value - 1; } in _GLIBCXX_VISIBILITY() 897 template<typename _RealType, int __w, int __s, int __r> in _GLIBCXX_VISIBILITY() 905 static const int word_size = __w; in _GLIBCXX_VISIBILITY() [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/ |
| D | random.tcc | 194 template<class _UIntType, int __w, int __n, int __m, int __r, 198 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 201 template<class _UIntType, int __w, int __n, int __m, int __r, 205 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 208 template<class _UIntType, int __w, int __n, int __m, int __r, 212 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 215 template<class _UIntType, int __w, int __n, int __m, int __r, 219 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 222 template<class _UIntType, int __w, int __n, int __m, int __r, 226 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, [all …]
|
| D | random.h | 55 template<typename _UIntType, int __w, in _GLIBCXX_VISIBILITY() 56 bool = __w < std::numeric_limits<_UIntType>::digits> in _GLIBCXX_VISIBILITY() 60 template<typename _UIntType, int __w> in _GLIBCXX_VISIBILITY() 61 struct _Shift<_UIntType, __w, true> in _GLIBCXX_VISIBILITY() 62 { static const _UIntType __value = _UIntType(1) << __w; }; in _GLIBCXX_VISIBILITY() 543 template<class _UIntType, int __w, int __n, int __m, int __r, in _GLIBCXX_VISIBILITY() 555 static const int word_size = __w; in _GLIBCXX_VISIBILITY() 597 { return __detail::_Shift<_UIntType, __w>::__value - 1; } in _GLIBCXX_VISIBILITY() 893 template<typename _RealType, int __w, int __s, int __r> in _GLIBCXX_VISIBILITY() 901 static const int word_size = __w; in _GLIBCXX_VISIBILITY() [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
| D | random.tcc | 211 size_t __w, size_t __n, size_t __m, size_t __r, 216 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, 220 size_t __w, size_t __n, size_t __m, size_t __r, 225 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, 229 size_t __w, size_t __n, size_t __m, size_t __r, 234 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, 238 size_t __w, size_t __n, size_t __m, size_t __r, 243 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, 247 size_t __w, size_t __n, size_t __m, size_t __r, 252 mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, [all …]
|
| D | ostream_insert.h | 87 const streamsize __w = __out.width(); in _GLIBCXX_VISIBILITY() local 88 if (__w > __n) in _GLIBCXX_VISIBILITY() 94 __ostream_fill(__out, __w - __n); in _GLIBCXX_VISIBILITY() 98 __ostream_fill(__out, __w - __n); in _GLIBCXX_VISIBILITY()
|
| D | random.h | 69 template<typename _UIntType, size_t __w, in _GLIBCXX_VISIBILITY() 70 bool = __w < static_cast<size_t> in _GLIBCXX_VISIBILITY() 75 template<typename _UIntType, size_t __w> in _GLIBCXX_VISIBILITY() 76 struct _Shift<_UIntType, __w, true> in _GLIBCXX_VISIBILITY() 77 { static const _UIntType __value = _UIntType(1) << __w; }; in _GLIBCXX_VISIBILITY() 378 template<typename _UIntType, size_t __w, in _GLIBCXX_VISIBILITY() 389 static_assert(__r <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() 391 static_assert(__u <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() 393 static_assert(__s <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() 395 static_assert(__t <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() [all …]
|
| D | locale_facets.tcc | 777 _M_pad(_CharT __fill, streamsize __w, ios_base& __io, in _M_pad() argument 783 __cs, __w, __len); in _M_pad() 784 __len = static_cast<int>(__w); in _M_pad() 918 const streamsize __w = __io.width(); in _M_insert_int() local 919 if (__w > static_cast<streamsize>(__len)) in _M_insert_int() 922 * __w)); in _M_insert_int() 923 _M_pad(__fill, __w, __io, __cs3, __cs, __len); in _M_insert_int() 1073 const streamsize __w = __io.width(); in _M_insert_float() local 1074 if (__w > static_cast<streamsize>(__len)) in _M_insert_float() 1077 * __w)); in _M_insert_float() [all …]
|
| D | valarray_after.h | 343 const _Expr<_Dom2, typename _Dom2::value_type>& __w) \ in _GLIBCXX_VISIBILITY() 348 return _Expr<_Closure, _Value>(_Closure(__v(), __w())); \ in _GLIBCXX_VISIBILITY() 522 _Fun(const valarray<_Tp>& __v, const valarray<_Tp>& __w) \ in _GLIBCXX_VISIBILITY() 525 return _Expr<_Closure, _Tp>(_Closure(__v, __w)); \ in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/gcc-4.7/libgcc/ |
| HD | longlong.h | 197 DWunion __w; \ 198 __w.ll = __umulsidi3 (u, v); \ 199 w1 = __w.s.high; \ 200 w0 = __w.s.low; \ 473 ({UDItype __w; \ 475 : "=d" (__w) \ 478 __w; }) 808 ({UDItype __w; \ 810 : "=g" (__w) \ 813 __w; }) [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/experimental/bits/ |
| D | shared_ptr.h | 583 shared_ptr<_Tp> __w) in _GLIBCXX_VISIBILITY() 584 { return std::atomic_compare_exchange_weak<_Tp>(__p, __v, __w); } in _GLIBCXX_VISIBILITY() 589 shared_ptr<_Tp> __w) in _GLIBCXX_VISIBILITY() 590 { return std::atomic_compare_exchange_strong<_Tp>(__p, __v, __w); } in _GLIBCXX_VISIBILITY() 595 shared_ptr<_Tp> __w, in _GLIBCXX_VISIBILITY() 598 { return std::atomic_compare_exchange_weak_explicit<_Tp>(__p, __v, __w, in _GLIBCXX_VISIBILITY() 605 shared_ptr<_Tp> __w, in _GLIBCXX_VISIBILITY() 608 { return std::atomic_compare_exchange_strong_explicit<_Tp>(__p, __v, __w, in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/binutils-2.27/include/ |
| HD | longlong.h | 537 ({UDItype __w; \ 539 : "=d" (__w) \ 542 __w; }) 872 ({UDItype __w; \ 874 : "=g" (__w) \ 877 __w; }) 1542 DWunion __w; \ 1543 __w.ll = __builtin_umulsidi3 (u, v); \ 1544 w1 = __w.s.high; \ 1545 w0 = __w.s.low; \ [all …]
|
| /dragonfly/contrib/gcc-8.0/include/ |
| HD | longlong.h | 539 ({UDItype __w; \ 541 : "=d" (__w) \ 544 __w; }) 1543 DWunion __w; \ 1544 __w.ll = __builtin_umulsidi3 (u, v); \ 1545 w1 = __w.s.high; \ 1546 w0 = __w.s.low; \ 1675 ({DWunion __w; \ 1676 umul_ppmm (__w.s.high, __w.s.low, u, v); \ 1677 __w.ll; })
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/ |
| D | random.tcc | 521 auto __w = _M_t.begin(); in _M_init_full() local 526 auto __slitbegin = __w; in _M_init_full() 535 *__w++ = __s /= *__cit++; in _M_init_full() 543 *__w++ = std::sqrt(__sum); in _M_init_full() 562 auto __w = _M_t.begin(); in _M_init_lower() local 567 auto __slitbegin = __w; in _M_init_lower() 576 *__w++ = __s /= *__cit++; in _M_init_lower() 584 *__w++ = std::sqrt(__sum); in _M_init_lower() 600 auto __w = _M_t.begin(); in _M_init_diagonal() local 604 std::fill_n(__w, __step, _RealType(0)); in _M_init_diagonal() [all …]
|
| /dragonfly/contrib/mpfr/src/ |
| HD | mpfr-longlong.h | 530 ({UDItype __w; \ 532 : "=r" (__w) : "%0" ((USItype)(u)), "r" ((USItype)(v))); \ 533 __w; }) 868 ({UDItype __w; \ 869 __asm__ ("emul %2,%1,%0" : "=d" (__w) : "%dI" (u), "dI" (v)); \ 870 __w; }) 1084 ({UDItype __w; \ 1086 : "=g" (__w) \ 1088 __w; })
|
| /dragonfly/contrib/gmp/ |
| HD | longlong.h | 542 ({UDItype __w; \ 544 : "=r" (__w) : "%0" ((USItype)(u)), "r" ((USItype)(v))); \ 545 __w; }) 1025 ({UDItype __w; \ 1026 __asm__ ("emul %2,%1,%0" : "=d" (__w) : "%dI" (u), "dI" (v)); \ 1027 __w; }) 1241 ({UDItype __w; \ 1243 : "=g" (__w) \ 1245 __w; })
|