Searched refs:__x (Results 1 - 25 of 189) sorted by relevance

12345678

/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr17390.c4 double sgn (double __x) argument
6 return __x == 0.0 ? 0.0 : (__x > 0.0 ? 1.0 : -1.0);
H A Dcmov7.c13 sgn (double __x) argument
15 return __x >= 0.0 ? 1.0 : -1.0;
H A D980312-1.c6 __expm1 (double __x) argument
13 __sgn1 (double __x) argument
15 return __x >= 0.0 ? 1.0 : -1.0;
18 tanh (double __x) argument
20 return __expm1 (__x) * __sgn1 (-__x);
H A Dpr19236-1.c8 float testf (float __x) { argument
12 double test (double __x) { argument
H A D980313-1.c6 __expm1 (double __x) argument
13 __sgn1 (double __x) argument
15 return __x >= 0.0 ? 1.0 : -1.0;
18 tanh (double __x) argument
20 register double __exm1 = __expm1 (__x);
21 return __exm1 / (__exm1 + 2.0) * __sgn1 (-__x);
H A Dpr39482.c4 extern double log (double __x);
/haiku-buildtools/gcc/fixincludes/tests/base/sys/
H A Dwait.h13 #define WSTOPSIG(__x) (int)(WIFSTOPPED(__x) ? (int)((((unsigned int)__x) >> 8) & 0xff) : -1)
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D990413-2.c9 union { double __d; int __i[2]; } __x; local
10 __x.__i[0] = 0x0;
11 __x.__i[1] = 0x80000000;
12 return __x.__d;
16 __atan2l (long double __y, long double __x) argument
21 : "0" (__x), "u" (__y)
27 __sqrtl (long double __x) argument
30 __asm __volatile__ ("fsqrt" : "=t" (__result) : "0" (__x));
35 asin (double __x) argument
37 return __atan2l (__x, __sqrt
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lookup/
H A Dbuiltin5.C8 atanh(double __x) argument
9 { return __builtin_atanh(__x); }
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dpr20931.C8 __finite (double __x) throw () argument
11 (((((union { double __d; int __i[2]; }) {__d: __x}).__i[1]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-builtin1.C5 isinf(long double __x) argument
6 { return __builtin_isinf(__x); }
9 isinf(double __x) argument
10 { return __builtin_isinf(__x); }
13 isnan(long double __x) argument
14 { return __builtin_isnan(__x); }
/haiku-buildtools/gcc/libstdc++-v3/include/profile/impl/
H A Dprofiler.h208 #define __profcxx_hashtable_size_construct(__x...) \
209 __gnu_profile::__trace_hashtable_size_construct(__x)
210 #define __profcxx_hashtable_size_resize(__x...) \
211 __gnu_profile::__trace_hashtable_size_resize(__x)
212 #define __profcxx_hashtable_size_destruct(__x...) \
213 __gnu_profile::__trace_hashtable_size_destruct(__x)
215 #define __profcxx_hashtable_size_construct(__x...) 0
216 #define __profcxx_hashtable_size_resize(__x...)
217 #define __profcxx_hashtable_size_destruct(__x...)
223 #define __profcxx_vector_size_construct(__x
[all...]
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dstl_hash_fun.h60 size_t operator()(char __x) const { return __x; }
63 size_t operator()(unsigned char __x) const { return __x; }
66 size_t operator()(unsigned char __x) const { return __x; }
69 size_t operator()(short __x) const { return __x; }
72 size_t operator()(unsigned short __x) const { return __x; }
[all...]
H A Dstl_relops.h37 inline bool operator!=(const _Tp& __x, const _Tp& __y) { argument
38 return !(__x == __y);
42 inline bool operator>(const _Tp& __x, const _Tp& __y) { argument
43 return __y < __x;
47 inline bool operator<=(const _Tp& __x, const _Tp& __y) { argument
48 return !(__y < __x);
52 inline bool operator>=(const _Tp& __x, const _Tp& __y) { argument
53 return !(__x < __y);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/warn/
H A DWparentheses-4.C9 cmath_power(_Tp __x, unsigned int __n) argument
13 return __x;
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20011217-2.c6 finite (double __x) argument
9 (((((union { double __d; int __i[2]; }) {__d: __x}).__i[1]
H A Dpr34966.c4 atan (double __x) argument
8 __asm __volatile__ ("" : "=t" (__result) : "0" (__x));
10 __result = __x;
/haiku-buildtools/gcc/libstdc++-v3/include/backward/
H A Dhash_fun.h99 operator()(char __x) const
100 { return __x; }
107 operator()(unsigned char __x) const
108 { return __x; }
115 operator()(unsigned char __x) const
116 { return __x; }
123 operator()(short __x) const
124 { return __x; }
131 operator()(unsigned short __x) const
132 { return __x; }
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dstl_relops.h79 * @param __x A thing.
81 * @return __x != __y
87 operator!=(const _Tp& __x, const _Tp& __y) argument
88 { return !(__x == __y); }
92 * @param __x A thing.
94 * @return __x > __y
100 operator>(const _Tp& __x, const _Tp& __y) argument
101 { return __y < __x; }
105 * @param __x A thing.
107 * @return __x <
113 operator <=(const _Tp& __x, const _Tp& __y) argument
126 operator >=(const _Tp& __x, const _Tp& __y) argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/src/c++98/
H A Dtree.cc60 local_Rb_tree_increment(_Rb_tree_node_base* __x) throw () argument
62 if (__x->_M_right != 0)
64 __x = __x->_M_right;
65 while (__x->_M_left != 0)
66 __x = __x->_M_left;
70 _Rb_tree_node_base* __y = __x->_M_parent;
71 while (__x == __y->_M_right)
73 __x
83 _Rb_tree_increment(_Rb_tree_node_base* __x) argument
89 _Rb_tree_increment(const _Rb_tree_node_base* __x) argument
95 local_Rb_tree_decrement(_Rb_tree_node_base* __x) argument
121 _Rb_tree_decrement(_Rb_tree_node_base* __x) argument
127 _Rb_tree_decrement(const _Rb_tree_node_base* __x) argument
133 local_Rb_tree_rotate_left(_Rb_tree_node_base* const __x, _Rb_tree_node_base*& __root) argument
157 _Rb_tree_rotate_left(_Rb_tree_node_base* const __x, _Rb_tree_node_base*& __root) argument
164 local_Rb_tree_rotate_right(_Rb_tree_node_base* const __x, _Rb_tree_node_base*& __root) argument
188 _Rb_tree_rotate_right(_Rb_tree_node_base* const __x, _Rb_tree_node_base*& __root) argument
195 _Rb_tree_insert_and_rebalance(const bool __insert_left, _Rb_tree_node_base* __x, _Rb_tree_node_base* __p, _Rb_tree_node_base& __header) argument
293 _Rb_tree_node_base* __x = 0; local
[all...]
H A Dlist.cc60 _List_node_base::swap(_List_node_base& __x,
63 if ( __x._M_next != &__x )
67 // Both __x and __y are not empty.
68 std::swap(__x._M_next,__y._M_next);
69 std::swap(__x._M_prev,__y._M_prev);
70 __x._M_next->_M_prev = __x._M_prev->_M_next = &__x;
75 // __x i
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-diag1.C7 f.__x.foo; // { dg-error "<lambda\\(\\)>::<x capture>" }
/haiku-buildtools/gcc/libstdc++-v3/include/debug/
H A Dsafe_container.h58 _Safe_container(_Safe_container&& __x) noexcept
60 { _Base::_M_swap(__x); }
62 _Safe_container(_Safe_container&& __x, argument
66 if (__x._M_cont().get_allocator() == __a)
67 _Base::_M_swap(__x);
69 __x._M_invalidate_all();
84 operator=(_Safe_container&& __x) noexcept
86 __glibcxx_check_self_move_assign(__x); variable
93 || _M_cont().get_allocator() == __x._M_cont().get_allocator();
95 _Base::_M_swap(__x);
[all...]
/haiku-buildtools/gcc/gcc/testsuite/obj-c++.dg/
H A Dtemplate-2.mm24 pointer address(reference __x) const { return &__x; }
25 const_pointer address(const_reference __x) const { return &__x; }
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr33340.C10 void push_back(const T& __x) { argument
11 ::new(0) T(__x);
12 insert(__x);
14 void insert(const T& __x);

Completed in 232 milliseconds

12345678