Searched refs:__u (Results 1 - 25 of 59) sorted by relevance

123

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20001221-1.c23 *__u = __s;
28 __u->__ui = __c * 0x01010101;
29 __u = __extension__ ((void *) __u + 4);
31 __u->__ui = __c * 0x01010101;
32 __u = __extension__ ((void *) __u + 4);
48 *__u = __s;
53 __u->__ui = __c * 0x01010101;
54 __u
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dlookup3.C12 } __u;
13 __u.__in = (stat_loc);
14 __u.__i;
/openbsd-current/gnu/llvm/libcxx/include/__utility/
H A Dcmp.h48 bool cmp_equal(_Tp __t, _Up __u) noexcept
51 return __t == __u;
53 return __t < 0 ? false : make_unsigned_t<_Tp>(__t) == __u;
55 return __u < 0 ? false : __t == make_unsigned_t<_Up>(__u);
60 bool cmp_not_equal(_Tp __t, _Up __u) noexcept
62 return !_VSTD::cmp_equal(__t, __u);
67 bool cmp_less(_Tp __t, _Up __u) noexcept
70 return __t < __u;
72 return __t < 0 ? true : make_unsigned_t<_Tp>(__t) < __u;
[all...]
/openbsd-current/gnu/llvm/libcxx/include/__compare/
H A Dsynth_three_way.h29 []<class _Tp, class _Up>(const _Tp& __t, const _Up& __u)
31 { __t < __u } -> __boolean_testable;
32 { __u < __t } -> __boolean_testable;
36 return __t <=> __u;
38 if (__t < __u) return weak_ordering::less;
39 if (__u < __t) return weak_ordering::greater;
H A Dcompare_strong_order_fallback.h34 __go(_Tp&& __t, _Up&& __u, __priority_tag<1>)
35 noexcept(noexcept(_VSTD::strong_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))))
36 -> decltype( _VSTD::strong_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)))
37 { return _VSTD::strong_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)); }
42 __go(_Tp&& __t, _Up&& __u, __priority_tag<0>)
43 noexcept(noexcept(_VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? strong_ordering::equal :
44 _VSTD::forward<_Tp>(__t) < _VSTD::forward<_Up>(__u) ? strong_ordering::less :
46 -> decltype( _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? strong_ordering::equal :
47 _VSTD::forward<_Tp>(__t) < _VSTD::forward<_Up>(__u) ? strong_ordering::less :
50 return _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u)
[all...]
H A Dcompare_weak_order_fallback.h34 __go(_Tp&& __t, _Up&& __u, __priority_tag<1>)
35 noexcept(noexcept(_VSTD::weak_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))))
36 -> decltype( _VSTD::weak_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)))
37 { return _VSTD::weak_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)); }
42 __go(_Tp&& __t, _Up&& __u, __priority_tag<0>)
43 noexcept(noexcept(_VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? weak_ordering::equivalent :
44 _VSTD::forward<_Tp>(__t) < _VSTD::forward<_Up>(__u) ? weak_ordering::less :
46 -> decltype( _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? weak_ordering::equivalent :
47 _VSTD::forward<_Tp>(__t) < _VSTD::forward<_Up>(__u) ? weak_ordering::less :
50 return _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u)
[all...]
H A Dweak_order.h36 __go(_Tp&& __t, _Up&& __u, __priority_tag<3>)
37 noexcept(noexcept(weak_ordering(weak_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)))))
38 -> decltype( weak_ordering(weak_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))))
39 { return weak_ordering(weak_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))); }
45 __go(_Tp&& __t, _Up&& __u, __priority_tag<2>) noexcept
47 partial_ordering __po = (__t <=> __u);
57 bool __u_is_nan = _VSTD::isnan(__u);
59 bool __u_is_negative = _VSTD::signbit(__u);
73 __go(_Tp&& __t, _Up&& __u, __priority_tag<1>)
74 noexcept(noexcept(weak_ordering(compare_three_way()(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)))))
[all...]
H A Dcompare_partial_order_fallback.h34 __go(_Tp&& __t, _Up&& __u, __priority_tag<1>)
35 noexcept(noexcept(_VSTD::partial_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))))
36 -> decltype( _VSTD::partial_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)))
37 { return _VSTD::partial_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)); }
42 __go(_Tp&& __t, _Up&& __u, __priority_tag<0>)
43 noexcept(noexcept(_VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? partial_ordering::equivalent :
44 _VSTD::forward<_Tp>(__t) < _VSTD::forward<_Up>(__u) ? partial_ordering::less :
45 _VSTD::forward<_Up>(__u) < _VSTD::forward<_Tp>(__t) ? partial_ordering::greater :
47 -> decltype( _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? partial_ordering::equivalent :
48 _VSTD::forward<_Tp>(__t) < _VSTD::forward<_Up>(__u)
[all...]
H A Dcompare_three_way.h30 auto operator()(_T1&& __t, _T2&& __u) const
31 noexcept(noexcept(_VSTD::forward<_T1>(__t) <=> _VSTD::forward<_T2>(__u)))
32 { return _VSTD::forward<_T1>(__t) <=> _VSTD::forward<_T2>(__u); }
H A Dpartial_order.h36 __go(_Tp&& __t, _Up&& __u, __priority_tag<2>)
37 noexcept(noexcept(partial_ordering(partial_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)))))
38 -> decltype( partial_ordering(partial_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))))
39 { return partial_ordering(partial_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))); }
45 __go(_Tp&& __t, _Up&& __u, __priority_tag<1>)
46 noexcept(noexcept(partial_ordering(compare_three_way()(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)))))
47 -> decltype( partial_ordering(compare_three_way()(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))))
48 { return partial_ordering(compare_three_way()(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))); }
53 __go(_Tp&& __t, _Up&& __u, __priority_tag<0>)
54 noexcept(noexcept(partial_ordering(_VSTD::weak_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)))))
[all...]
H A Dstrong_order.h42 __go(_Tp&& __t, _Up&& __u, __priority_tag<2>)
43 noexcept(noexcept(strong_ordering(strong_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u)))))
44 -> decltype( strong_ordering(strong_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))))
45 { return strong_ordering(strong_order(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))); }
51 __go(_Tp&& __t, _Up&& __u, __priority_tag<1>) noexcept
55 int32_t __ry = _VSTD::bit_cast<int32_t>(__u);
61 int64_t __ry = _VSTD::bit_cast<int64_t>(__u);
65 } else if (__t < __u) {
67 } else if (__t > __u) {
69 } else if (__t == __u) {
[all...]
H A Dthree_way_comparable.h50 requires(__make_const_lvalue_ref<_Tp> __t, __make_const_lvalue_ref<_Up> __u) {
51 { __t <=> __u } -> __compares_as<_Cat>;
52 { __u <=> __t } -> __compares_as<_Cat>;
/openbsd-current/gnu/gcc/libstdc++-v3/config/locale/gnu/
H A Dtime_members.cc288 union { char *__s; wchar_t *__w; } __u; local
290 __u.__s = __nl_langinfo_l(_NL_WD_FMT, __cloc);
291 _M_data->_M_date_format = __u.__w;
292 __u.__s = __nl_langinfo_l(_NL_WERA_D_FMT, __cloc);
293 _M_data->_M_date_era_format = __u.__w;
294 __u.__s = __nl_langinfo_l(_NL_WT_FMT, __cloc);
295 _M_data->_M_time_format = __u.__w;
296 __u.__s = __nl_langinfo_l(_NL_WERA_T_FMT, __cloc);
297 _M_data->_M_time_era_format = __u.__w;
298 __u
[all...]
H A Dnumeric_members.cc124 union { char *__s; wchar_t __w; } __u; local
125 __u.__s = __nl_langinfo_l(_NL_NUMERIC_DECIMAL_POINT_WC, __cloc);
126 _M_data->_M_decimal_point = __u.__w;
128 __u.__s = __nl_langinfo_l(_NL_NUMERIC_THOUSANDS_SEP_WC, __cloc);
129 _M_data->_M_thousands_sep = __u.__w;
/openbsd-current/gnu/llvm/libcxx/include/__concepts/
H A Dtotally_ordered.h30 requires(__make_const_lvalue_ref<_Tp> __t, __make_const_lvalue_ref<_Up> __u) {
31 { __t < __u } -> __boolean_testable;
32 { __t > __u } -> __boolean_testable;
33 { __t <= __u } -> __boolean_testable;
34 { __t >= __u } -> __boolean_testable;
35 { __u < __t } -> __boolean_testable;
36 { __u > __t } -> __boolean_testable;
37 { __u <= __t } -> __boolean_testable;
38 { __u >= __t } -> __boolean_testable;
H A Dequality_comparable.h30 requires(__make_const_lvalue_ref<_Tp> __t, __make_const_lvalue_ref<_Up> __u) {
31 { __t == __u } -> __boolean_testable;
32 { __t != __u } -> __boolean_testable;
33 { __u == __t } -> __boolean_testable;
34 { __u != __t } -> __boolean_testable;
H A Dswappable.h46 requires(_Tp&& __t, _Up&& __u) {
47 swap(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u));
56 requires(_Tp(& __t)[_Size], _Up(& __u)[_Size], const __fn& __swap) {
57 __swap(__t[0], __u[0]);
71 constexpr void operator()(_Tp&& __t, _Up&& __u) const
72 noexcept(noexcept(swap(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u))))
74 swap(_VSTD::forward<_Tp>(__t), _VSTD::forward<_Up>(__u));
80 constexpr void operator()(_Tp(& __t)[_Size], _Up(& __u)[_Size]) const
81 noexcept(noexcept((*this)(*__t, *__u)))
85 (*this)(__t[__i], __u[__
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D980211-1.c11 union { long double __l; int __i[3]; } __u = { __l: __x }; local
13 return (__u.__i[2] & 0x8000) != 0;
/openbsd-current/gnu/llvm/libcxx/include/__functional/
H A Dranges_operations.h31 [[nodiscard]] constexpr bool operator()(_Tp &&__t, _Up &&__u) const
32 noexcept(noexcept(bool(_VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u)))) {
33 return _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u);
42 [[nodiscard]] constexpr bool operator()(_Tp &&__t, _Up &&__u) const
43 noexcept(noexcept(bool(!(_VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u))))) {
44 return !(_VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u));
53 [[nodiscard]] constexpr bool operator()(_Tp &&__t, _Up &&__u) const
54 noexcept(noexcept(bool(_VSTD::forward<_Tp>(__t) < _VSTD::forward<_Up>(__u)))) {
55 return _VSTD::forward<_Tp>(__t) < _VSTD::forward<_Up>(__u);
64 [[nodiscard]] constexpr bool operator()(_Tp &&__t, _Up &&__u) cons
[all...]
H A Doperations.h47 auto operator()(_T1&& __t, _T2&& __u) const
48 noexcept(noexcept(_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u)))
49 -> decltype( _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u))
50 { return _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u); }
76 auto operator()(_T1&& __t, _T2&& __u) const
77 noexcept(noexcept(_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u)))
78 -> decltype( _VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u))
79 { return _VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u); }
105 auto operator()(_T1&& __t, _T2&& __u) const
106 noexcept(noexcept(_VSTD::forward<_T1>(__t) * _VSTD::forward<_T2>(__u)))
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dtuple_defs.h64 const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u)
69 tuple_size<_Tp>::value, _Tp, _Up>::__eq(__t, __u);
75 const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u)
80 tuple_size<_Tp>::value, _Tp, _Up>::__less(__t, __u);
86 const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u)
87 { return !(__t == __u); }
92 const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u)
93 { return __u < __t; }
98 const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u)
99 { return !(__u < __
63 operator ==(const tuple<_GLIBCXX_TEMPLATE_ARGS>& __t, const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u) argument
74 operator <(const tuple<_GLIBCXX_TEMPLATE_ARGS>& __t, const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u) argument
85 operator !=(const tuple<_GLIBCXX_TEMPLATE_ARGS>& __t, const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u) argument
91 operator >(const tuple<_GLIBCXX_TEMPLATE_ARGS>& __t, const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u) argument
97 operator <=(const tuple<_GLIBCXX_TEMPLATE_ARGS>& __t, const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u) argument
103 operator >=(const tuple<_GLIBCXX_TEMPLATE_ARGS>& __t, const tuple<_GLIBCXX_TEMPLATE_ARGS_U>& __u) argument
[all...]
H A Dtuple_iterate.h66 tuple(const std::pair<_U1, _U2>& __u) : argument
67 _M_arg1(__u.first), _M_arg2(__u.second)
72 operator=(const std::pair<_U1, _U2>& __u) argument
74 _M_arg1 = __u.first;
75 _M_arg2 = __u.second;
/openbsd-current/gnu/llvm/libcxx/include/__numeric/
H A Dtransform_inclusive_scan.h28 _OutputIterator __result, _BinaryOp __b, _UnaryOp __u, _Tp __init)
31 __init = __b(__init, __u(*__first));
42 _OutputIterator __result, _BinaryOp __b, _UnaryOp __u)
45 typename iterator_traits<_InputIterator>::value_type __init = __u(*__first);
48 return _VSTD::transform_inclusive_scan(__first, __last, __result, __b, __u, __init);
27 transform_inclusive_scan(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _BinaryOp __b, _UnaryOp __u, _Tp __init) argument
41 transform_inclusive_scan(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _BinaryOp __b, _UnaryOp __u) argument
H A Dtransform_exclusive_scan.h29 _BinaryOp __b, _UnaryOp __u)
36 __init = __b(__init, __u(*__first));
27 transform_exclusive_scan(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _Tp __init, _BinaryOp __b, _UnaryOp __u) argument
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A Darm_cmse.h90 cmse_address_info_t __u; local
91 __u.value = __builtin_arm_cmse_TT(__p);
92 return __u;
96 cmse_address_info_t __u; local
97 __u.value = __builtin_arm_cmse_TTT(__p);
98 return __u;
104 cmse_address_info_t __u; local
105 __u.value = __builtin_arm_cmse_TTA(__p);
106 return __u;
110 cmse_address_info_t __u; local
[all...]

Completed in 131 milliseconds

123