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

/freebsd-11-stable/contrib/libstdc++/src/
H A Dtree.cc340 _Rb_tree_node_base* __w = __x_parent->_M_right; local
341 if (__w->_M_color == _S_red)
343 __w->_M_color = _S_black;
346 __w = __x_parent->_M_right;
348 if ((__w->_M_left == 0 ||
349 __w->_M_left->_M_color == _S_black) &&
350 (__w->_M_right == 0 ||
351 __w->_M_right->_M_color == _S_black))
353 __w->_M_color = _S_red;
359 if (__w
378 _Rb_tree_node_base* __w = __x_parent->_M_left; local
[all...]
H A Distream.cc283 const streamsize __w = __in.width(); local
284 const __size_type __n = __w > 0 ? static_cast<__size_type>(__w)
/freebsd-11-stable/contrib/libstdc++/config/locale/gnu/
H A Dtime_members.cc288 union { char *__s; wchar_t *__w; } __u; member in union:__anon1988
291 _M_data->_M_date_format = __u.__w;
293 _M_data->_M_date_era_format = __u.__w;
295 _M_data->_M_time_format = __u.__w;
297 _M_data->_M_time_era_format = __u.__w;
299 _M_data->_M_date_time_format = __u.__w;
301 _M_data->_M_date_time_era_format = __u.__w;
303 _M_data->_M_am = __u.__w;
305 _M_data->_M_pm = __u.__w;
307 _M_data->_M_am_pm_format = __u.__w;
[all...]
H A Dnumeric_members.cc124 union { char *__s; wchar_t __w; } __u; member in union:__anon1987
126 _M_data->_M_decimal_point = __u.__w;
129 _M_data->_M_thousands_sep = __u.__w;
H A Dmonetary_members.cc390 union { char *__s; wchar_t __w; } __u; member in union:__anon1985
392 _M_data->_M_decimal_point = __u.__w;
395 _M_data->_M_thousands_sep = __u.__w;
532 union { char *__s; wchar_t __w; } __u; member in union:__anon1986
534 _M_data->_M_decimal_point = __u.__w;
537 _M_data->_M_thousands_sep = __u.__w;
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dostream_insert.h89 const streamsize __w = __out.width(); local
90 if (__w > __n)
96 __ostream_fill(__out, __w - __n);
100 __ostream_fill(__out, __w - __n);
H A Dvalarray_after.h346 const _Expr<_Dom2, typename _Dom2::value_type>& __w) \
351 return _Expr<_Closure, _Value>(_Closure(__v(), __w())); \
525 _Fun(const valarray<_Tp>& __v, const valarray<_Tp>& __w) \
528 return _Expr<_Closure, _Tp>(_Closure(__v, __w)); \
H A Dvalarray_before.h594 _BinClos(const valarray<_Tp>& __v, const valarray<_Tp>& __w) argument
595 : _Base(__v, __w) {}
H A Dlocale_facets.h2458 _M_pad(char_type __fill, streamsize __w, ios_base& __io,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Davxintrin.h4139 /// \param __w
4144 _mm256_set1_pd(double __w) argument
4146 return _mm256_set_pd(__w, __w, __w, __w);
4158 /// \param __w
4163 _mm256_set1_ps(float __w) argument
4165 return _mm256_set_ps(__w, __w, __
4200 _mm256_set1_epi16(short __w) argument
[all...]
H A Dxmmintrin.h1789 /// \param __w
1796 _mm_set_ss(float __w) argument
1798 return __extension__ (__m128){ __w, 0, 0, 0 };
1809 /// \param __w
1814 _mm_set1_ps(float __w) argument
1816 return __extension__ (__m128){ __w, __w, __w, __w };
1828 /// \param __w
1833 _mm_set_ps1(float __w) argument
1860 _mm_set_ps(float __z, float __y, float __x, float __w) argument
1888 _mm_setr_ps(float __z, float __y, float __x, float __w) argument
[all...]
H A Demmintrin.h1812 /// \param __w
1819 _mm_set_sd(double __w) argument
1821 return __extension__ (__m128d){ __w, 0 };
1832 /// \param __w
1837 _mm_set1_pd(double __w) argument
1839 return __extension__ (__m128d){ __w, __w };
1850 /// \param __w
1855 _mm_set_pd1(double __w) argument
1857 return _mm_set1_pd(__w);
1875 _mm_set_pd(double __w, double __x) argument
1896 _mm_setr_pd(double __w, double __x) argument
3823 _mm_set1_epi16(short __w) argument
[all...]
H A Dmmintrin.h1392 /// \param __w
1397 _mm_set1_pi16(short __w) argument
1399 return _mm_set_pi16(__w, __w, __w, __w);
H A Davx512fintrin.h268 _mm512_set1_ps(float __w) argument
270 return __extension__ (__m512){ __w, __w, __w, __w, __w, __w, __w, __w,
271 __w, __
275 _mm512_set1_pd(double __w) argument
281 _mm512_set1_epi8(char __w) argument
295 _mm512_set1_epi16(short __w) argument
[all...]
/freebsd-11-stable/lib/msun/src/
H A Dmath_private.h377 __typeof(a) __s, __w; \
379 __w = (a) + (b); \
380 __s = __w - (a); \
381 (b) = ((a) - (__w - __s)) + ((b) - __s); \
382 (a) = __w; \
415 __typeof(a) __w; \
422 __w = (a) + (b); \
423 (b) = ((a) - __w) + (b); \
424 (a) = __w; \
435 __typeof(a) __w; \
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dlonglong.h180 DWunion __w; \
181 __w.ll = __umulsidi3 (u, v); \
182 w1 = __w.s.high; \
183 w0 = __w.s.low; \
368 ({UDItype __w; \
370 : "=d" (__w) \
373 __w; })
607 ({UDItype __w; \
609 : "=g" (__w) \
612 __w; })
[all...]
/freebsd-11-stable/contrib/gcc/config/arm/
H A Dmmintrin.h1099 _mm_set1_pi16 (short __w) argument
1101 unsigned int __i = (unsigned short)__w << 16 | (unsigned short)__w;
1109 unsigned int __w = (unsigned char)__b << 8 | (unsigned char)__b; local
1110 unsigned int __i = __w << 16 | __w;
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dmmintrin.h909 _mm_set1_pi16 (short __w) argument
911 return _mm_set_pi16 (__w, __w, __w, __w);
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dropeimpl.h1016 size_t __w = __o.width(); local
1023 if (__rope_len < __w)
1024 __pad_len = __w - __rope_len;
1029 __o.width(__w / __rope_len);
1038 __o.width(__w);
1043 __o.width(__w);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/
H A Dmmintrin.h1405 _mm_set1_pi16(short __w) { argument
1409 w = (__vector signed short)vec_splats(__w);
1414 res.as_short[0] = __w;
1415 res.as_short[1] = __w;
1416 res.as_short[2] = __w;
1417 res.as_short[3] = __w;
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_valarray.h988 operator _Op(const valarray<_Tp>& __v, const valarray<_Tp>& __w) \
990 _GLIBCXX_DEBUG_ASSERT(__v.size() == __w.size()); \
993 return _Expr<_Closure, _Rt>(_Closure(__v, __w)); \

Completed in 169 milliseconds