Searched refs:__w (Results 1 - 25 of 26) sorted by relevance

12

/haiku-buildtools/gcc/libstdc++-v3/src/c++98/
H A Dtree.cc369 _Rb_tree_node_base* __w = __x_parent->_M_right; local
370 if (__w->_M_color == _S_red)
372 __w->_M_color = _S_black;
375 __w = __x_parent->_M_right;
377 if ((__w->_M_left == 0 ||
378 __w->_M_left->_M_color == _S_black) &&
379 (__w->_M_right == 0 ||
380 __w->_M_right->_M_color == _S_black))
382 __w->_M_color = _S_red;
388 if (__w
407 _Rb_tree_node_base* __w = __x_parent->_M_left; local
[all...]
H A Distream-string.cc61 const streamsize __w = __in.width(); local
62 const __size_type __n = __w > 0 ? static_cast<__size_type>(__w)
/haiku-buildtools/gcc/libstdc++-v3/config/locale/gnu/
H A Dtime_members.cc291 union { char *__s; wchar_t *__w; } __u; member in union:__anon2258
294 _M_data->_M_date_format = __u.__w;
296 _M_data->_M_date_era_format = __u.__w;
298 _M_data->_M_time_format = __u.__w;
300 _M_data->_M_time_era_format = __u.__w;
302 _M_data->_M_date_time_format = __u.__w;
304 _M_data->_M_date_time_era_format = __u.__w;
306 _M_data->_M_am = __u.__w;
308 _M_data->_M_pm = __u.__w;
310 _M_data->_M_am_pm_format = __u.__w;
[all...]
H A Dnumeric_members.cc154 union { char *__s; wchar_t __w; } __u; member in union:__anon2257
156 _M_data->_M_decimal_point = __u.__w;
159 _M_data->_M_thousands_sep = __u.__w;
H A Dmonetary_members.cc592 union { char *__s; wchar_t __w; } __u; member in union:__anon2255
594 _M_data->_M_decimal_point = __u.__w;
597 _M_data->_M_thousands_sep = __u.__w;
775 union { char *__s; wchar_t __w; } __u; member in union:__anon2256
777 _M_data->_M_decimal_point = __u.__w;
780 _M_data->_M_thousands_sep = __u.__w;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A D990130-1.c20 w.ll = ({DIunion __w; __asm__ ("mull %3" : "=a" ((USItype) ( __w.s.low )), "=d" ((USItype) ( __w.s.high )) : "%0" ((USItype) ( uu.s.low )), "rm" ((USItype) ( vv.s.low ))) ; __w.ll; }) ;
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dshared_ptr_atomic.h211 * @param __w A non-null pointer to a shared_ptr object.
222 shared_ptr<_Tp> __w,
232 *__p = std::move(__w);
243 shared_ptr<_Tp> __w)
246 std::move(__w), memory_order_seq_cst, memory_order_seq_cst);
253 shared_ptr<_Tp> __w,
258 std::move(__w), __success, __failure);
264 shared_ptr<_Tp> __w)
267 std::move(__w), memory_order_seq_cst, memory_order_seq_cst);
274 __shared_ptr<_Tp, _Lp> __w,
220 atomic_compare_exchange_strong_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w, memory_order, memory_order) argument
242 atomic_compare_exchange_strong(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w) argument
251 atomic_compare_exchange_weak_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w, memory_order __success, memory_order __failure) argument
263 atomic_compare_exchange_weak(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w) argument
272 atomic_compare_exchange_strong_explicit(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp>* __v, __shared_ptr<_Tp, _Lp> __w, memory_order, memory_order) argument
294 atomic_compare_exchange_strong(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp>* __v, __shared_ptr<_Tp, _Lp> __w) argument
304 atomic_compare_exchange_weak_explicit(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp>* __v, __shared_ptr<_Tp, _Lp> __w, memory_order __success, memory_order __failure) argument
316 atomic_compare_exchange_weak(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp>* __v, __shared_ptr<_Tp, _Lp> __w) argument
[all...]
H A Dostream_insert.h87 const streamsize __w = __out.width(); local
88 if (__w > __n)
94 __ostream_fill(__out, __w - __n);
98 __ostream_fill(__out, __w - __n);
H A Drandom.h70 template<typename _UIntType, size_t __w,
71 bool = __w < static_cast<size_t>
76 template<typename _UIntType, size_t __w>
77 struct _Shift<_UIntType, __w, true>
78 { static const _UIntType __value = _UIntType(1) << __w; };
424 * @tparam __w Word size, the number of bits in each element of
439 template<typename _UIntType, size_t __w,
450 static_assert(__r <= __w, "template argument substituting "
452 static_assert(__u <= __w, "template argument substituting "
454 static_assert(__s <= __w, "templat
[all...]
H A Dvalarray_after.h342 const _Expr<_Dom2, typename _Dom2::value_type>& __w) \
347 return _Expr<_Closure, _Value>(_Closure(__v(), __w())); \
521 _Fun(const valarray<_Tp>& __v, const valarray<_Tp>& __w) \
524 return _Expr<_Closure, _Tp>(_Closure(__v, __w)); \
H A Dvalarray_before.h601 _BinClos(const valarray<_Tp>& __v, const valarray<_Tp>& __w) argument
602 : _Base(__v, __w) {}
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dstl_tree.h368 _Rb_tree_node_base* __w = __x_parent->_M_right; local
369 if (__w->_M_color == _S_rb_tree_red) {
370 __w->_M_color = _S_rb_tree_black;
373 __w = __x_parent->_M_right;
375 if ((__w->_M_left == 0 ||
376 __w->_M_left->_M_color == _S_rb_tree_black) &&
377 (__w->_M_right == 0 ||
378 __w->_M_right->_M_color == _S_rb_tree_black)) {
379 __w->_M_color = _S_rb_tree_red;
383 if (__w
397 _Rb_tree_node_base* __w = __x_parent->_M_left; local
[all...]
H A Dropeimpl.h908 size_t __w = __o.width(); local
915 if (__rope_len < __w) {
916 __pad_len = __w - __rope_len;
920 if (!__is_simple) __o.width(__w/__rope_len);
930 __o.width(__w);
932 __STL_UNWIND(if (!__is_simple) __o.width(__w))
/haiku-buildtools/legacy/gcc/gcc/
H A Dlonglong.h156 DIunion __w; \
157 __w.ll = __umulsidi3 (u, v); \
158 w1 = __w.s.high; \
159 w0 = __w.s.low; \
228 ({UDItype __w; \
230 : "=r" (__w) \
233 __w; })
432 ({UDItype __w; \
434 : "=d" (__w) \
437 __w; })
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/tr1/
H A Drandom.h55 template<typename _UIntType, int __w,
56 bool = __w < std::numeric_limits<_UIntType>::digits>
60 template<typename _UIntType, int __w>
61 struct _Shift<_UIntType, __w, true>
62 { static const _UIntType __value = _UIntType(1) << __w; };
547 template<class _UIntType, int __w, int __n, int __m, int __r,
559 static const int word_size = __w;
601 { return __detail::_Shift<_UIntType, __w>::__value - 1; }
897 template<typename _RealType, int __w, int __s, int __r>
905 static const int word_size = __w;
[all...]
/haiku-buildtools/gcc/include/
H A Dlonglong.h537 ({UDItype __w; \
539 : "=d" (__w) \
542 __w; })
872 ({UDItype __w; \
874 : "=g" (__w) \
877 __w; })
1514 DWunion __w; \
1515 __w.ll = __builtin_umulsidi3 (u, v); \
1516 w1 = __w.s.high; \
1517 w0 = __w
[all...]
/haiku-buildtools/binutils/include/
H A Dlonglong.h537 ({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
[all...]
/haiku-buildtools/legacy/gcc/libstdc++/std/
H A Dvalarray_meta.h166 _BinFunClos (const valarray<_Tp>& __v, const valarray<_Tp>& __w, argument
168 : _Base (__v, __w, __f) {}
430 _BinClos (const valarray<_Tp>& __v, const valarray<_Tp>& __w) argument
431 : _Base (__v, __w) {}
776 const _Expr<_Dom2,typename _Dom2::value_type>& __w) \
781 return _Expr<_Closure,_Value> (_Closure (__v (), __w ())); \
849 const _Expr<_Dom2,typename _Dom2::value_type>& __w) \
853 return _Expr<_Closure,bool> (_Closure (__v (), __w ())); \
1012 _Name (const valarray<_Tp>& __v, const valarray<_Tp>& __w) \
1016 (_Closure (__v, __w, (_T
[all...]
H A Dstd_valarray.h649 operator##_Op (const valarray<_Tp> &__v, const valarray<_Tp> &__w) \
652 return _Expr<_Closure, _Tp> (_Closure (__v, __w)); \
687 operator##_Op (const valarray<_Tp> &__v, const valarray<_Tp> &__w) \
690 return _Expr<_Closure, bool> (_Closure (__v, __w)); \
/haiku-buildtools/gcc/gmp/
H A Dlonglong.h542 ({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; })
H A Dgmp-impl.h2221 mp_limb_t __w = __x + __y; \
2222 (w) = __w; \
2223 (cout) = __w < __x; \
2228 mp_limb_t __w; \
2231 __w = (x) + (y); \
2232 (w) = __w & GMP_NUMB_MASK; \
2233 (cout) = __w >> GMP_NUMB_BITS; \
2244 mp_limb_t __w = __x - __y; \
2245 (w) = __w; \
2246 (cout) = __w > __
[all...]
/haiku-buildtools/gcc/mpfr/src/
H A Dmpfr-longlong.h530 ({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; })
/haiku-buildtools/gcc/gcc/config/i386/
H A Dmmintrin.h926 _mm_set1_pi16 (short __w) argument
928 return _mm_set_pi16 (__w, __w, __w, __w);
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Dropeimpl.h1012 size_t __w = __o.width(); local
1019 if (__rope_len < __w)
1020 __pad_len = __w - __rope_len;
1025 __o.width(__w / __rope_len);
1034 __o.width(__w);
1039 __o.width(__w);
/haiku-buildtools/gcc/gcc/config/arm/
H A Dmmintrin.h1156 _mm_set1_pi16 (short __w) argument
1158 unsigned int __i = (unsigned short)__w << 16 | (unsigned short)__w;
1166 unsigned int __w = (unsigned char)__b << 8 | (unsigned char)__b; local
1167 unsigned int __i = __w << 16 | __w;

Completed in 206 milliseconds

12