HomeSort by: relevance | last modified time | path
    Searched refs:__x (Results 1 - 25 of 333) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/clang/lib/Headers/
tgmath.h 49 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
50 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
52 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
60 __tg_acos(float __x) {return acosf(__x);}
64 __tg_acos(double __x) {return acos(__x);}
    [all...]
__clang_hip_math.h 135 int abs(int __x) {
136 int __sgn = __x >> (sizeof(int) * CHAR_BIT - 1);
137 return (__x ^ __sgn) - __sgn;
140 long labs(long __x) {
141 long __sgn = __x >> (sizeof(long) * CHAR_BIT - 1);
142 return (__x ^ __sgn) - __sgn;
145 long long llabs(long long __x) {
146 long long __sgn = __x >> (sizeof(long long) * CHAR_BIT - 1);
147 return (__x ^ __sgn) - __sgn;
152 float acosf(float __x) { return __ocml_acos_f32(__x);
    [all...]
adxintrin.h 22 _addcarryx_u32(unsigned char __cf, unsigned int __x, unsigned int __y,
25 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p);
30 _addcarryx_u64(unsigned char __cf, unsigned long long __x,
33 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p);
39 _addcarry_u32(unsigned char __cf, unsigned int __x, unsigned int __y,
42 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p);
47 _addcarry_u64(unsigned char __cf, unsigned long long __x,
50 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p);
55 _subborrow_u32(unsigned char __cf, unsigned int __x, unsigned int __y,
58 return __builtin_ia32_subborrow_u32(__cf, __x, __y, __p)
    [all...]
__clang_cuda_cmath.h 43 __DEVICE__ float abs(float __x) { return ::fabsf(__x); }
44 __DEVICE__ double abs(double __x) { return ::fabs(__x); }
45 __DEVICE__ float acos(float __x) { return ::acosf(__x); }
46 __DEVICE__ float asin(float __x) { return ::asinf(__x); }
47 __DEVICE__ float atan(float __x) { return ::atanf(__x); }
    [all...]
  /src/external/gpl3/gcc/dist/fixincludes/tests/base/sys/
wait.h 13 #define WSTOPSIG(__x) (int)(WIFSTOPPED(__x) ? (int)((((unsigned int)__x) >> 8) & 0xff) : -1)
  /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/sys/
wait.h 13 #define WSTOPSIG(__x) (int)(WIFSTOPPED(__x) ? (int)((((unsigned int)__x) >> 8) & 0xff) : -1)
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
std_abs.h 61 abs(long long __x) { return __builtin_llabs (__x); }
71 abs(double __x)
72 { return __builtin_fabs(__x); }
75 abs(float __x)
76 { return __builtin_fabsf(__x); }
79 abs(long double __x)
80 { return __builtin_fabsl(__x); }
85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x;
    [all...]
stl_relops.h 80 * @param __x A thing.
82 * @return __x != __y
88 operator!=(const _Tp& __x, const _Tp& __y)
89 { return !(__x == __y); }
93 * @param __x A thing.
95 * @return __x > __y
101 operator>(const _Tp& __x, const _Tp& __y)
102 { return __y < __x; }
106 * @param __x A thing.
108 * @return __x <= __
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Headers/openmp_wrappers/
cmath 43 __DEVICE__ float acosh(float __x) { return ::acoshf(__x); }
44 __DEVICE__ float asinh(float __x) { return ::asinhf(__x); }
45 __DEVICE__ float atanh(float __x) { return ::atanhf(__x); }
46 __DEVICE__ float cbrt(float __x) { return ::cbrtf(__x); }
47 __DEVICE__ float erf(float __x) { return ::erff(__x); }
    [all...]
complex_cmath.h 97 _Tp __x = __rho * cos(__theta); local
98 if (std::isnan(__x))
99 __x = 0;
103 return std::complex<_Tp>(__x, __y);
108 template <class _Tp> std::complex<_Tp> log(const std::complex<_Tp> &__x) {
109 return std::complex<_Tp>(log(abs(__x)), arg(__x));
114 template <class _Tp> std::complex<_Tp> log10(const std::complex<_Tp> &__x) {
115 return log(__x) / log(_Tp(10));
121 __DEVICE__ std::complex<_Tp> sqrt(const std::complex<_Tp> &__x) {
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
std_abs.h 61 abs(long long __x) { return __builtin_llabs (__x); }
71 abs(double __x)
72 { return __builtin_fabs(__x); }
75 abs(float __x)
76 { return __builtin_fabsf(__x); }
79 abs(long double __x)
80 { return __builtin_fabsl(__x); }
85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x;
    [all...]
stl_relops.h 80 * @param __x A thing.
82 * @return __x != __y
88 operator!=(const _Tp& __x, const _Tp& __y)
89 { return !(__x == __y); }
93 * @param __x A thing.
95 * @return __x > __y
101 operator>(const _Tp& __x, const _Tp& __y)
102 { return __y < __x; }
106 * @param __x A thing.
108 * @return __x <= __
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/impl/
profiler.h 208 #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...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/backward/
hash_fun.h 99 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...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/
hash_fun.h 99 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...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
tree.cc 60 local_Rb_tree_increment(_Rb_tree_node_base* __x) throw ()
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 = __y
293 _Rb_tree_node_base* __x = 0; local
    [all...]
list.cc 60 _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 is not empty, __y is empty
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
tree.cc 60 local_Rb_tree_increment(_Rb_tree_node_base* __x) throw ()
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 = __y
293 _Rb_tree_node_base* __x = 0; local
    [all...]
list.cc 60 _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 is not empty, __y is empty
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/
safe_container.h 59 _Safe_container(_Safe_container&& __x, const _Alloc&, std::true_type)
60 : _Safe_container(std::move(__x))
64 _Safe_container(_Safe_container&& __x, const _Alloc& __a, std::false_type)
69 if (__x._M_cont().get_allocator() == __a)
70 _Base::_M_swap(__x);
72 __x._M_invalidate_all();
78 _Safe_container(_Safe_container&& __x, const _Alloc& __a)
79 : _Safe_container(std::move(__x), __a,
97 operator=(_Safe_container&& __x) noexcept
102 if (std::__addressof(__x) == this
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/
safe_container.h 57 _Safe_container(_Safe_container&& __x, const _Alloc&, std::true_type)
58 : _Safe_container(std::move(__x))
61 _Safe_container(_Safe_container&& __x, const _Alloc& __a, std::false_type)
64 if (__x._M_cont().get_allocator() == __a)
65 _Base::_M_swap(__x);
67 __x._M_invalidate_all();
71 _Safe_container(_Safe_container&& __x, const _Alloc& __a)
72 : _Safe_container(std::move(__x), __a,
87 operator=(_Safe_container&& __x) noexcept
89 if (std::__addressof(__x) == this
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
simd_scalar.h 39 __promote_preserving_unsigned(const _Tp& __x)
41 if constexpr (is_signed_v<decltype(+__x)> && is_unsigned_v<_Tp>)
42 return static_cast<unsigned int>(__x);
44 return __x;
78 _S_masked(bool __x)
79 { return __x; }
115 _S_store(_Tp __x, void* __addr)
116 { __builtin_memcpy(__addr, &__x, sizeof(_Tp)); }
122 _S_store_bool_array(_BitMask<_Np, _Sanitized> __x, bool* __mem)
124 __make_dependent_t<decltype(__x), _CommonImplBuiltin>::_S_store_bool_array
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/
simd_scalar.h 39 __promote_preserving_unsigned(const _Tp& __x)
41 if constexpr (is_signed_v<decltype(+__x)> && is_unsigned_v<_Tp>)
42 return static_cast<unsigned int>(__x);
44 return __x;
78 _S_masked(bool __x)
79 { return __x; }
115 _S_store(_Tp __x, void* __addr)
116 { __builtin_memcpy(__addr, &__x, sizeof(_Tp)); }
122 _S_store_bool_array(_BitMask<_Np, _Sanitized> __x, bool* __mem)
124 __make_dependent_t<decltype(__x), _CommonImplBuiltin>::_S_store_bool_array
    [all...]
  /src/common/include/ppath/
ppath_impl.h 8 #define ppath_assert(__x) KASSERT(__x)
14 #define ppath_assert(__x) assert(__x)
  /src/external/apache2/llvm/dist/libcxx/include/__memory/
addressof.h 30 addressof(_Tp& __x) _NOEXCEPT
32 return __builtin_addressof(__x);
40 addressof(_Tp& __x) _NOEXCEPT
43 const_cast<char *>(&reinterpret_cast<const volatile char &>(__x)));
56 addressof(__strong _Tp& __x) _NOEXCEPT
58 return &__x;
65 addressof(__weak _Tp& __x) _NOEXCEPT
67 return &__x;
74 addressof(__autoreleasing _Tp& __x) _NOEXCEPT
76 return &__x;
    [all...]

Completed in 39 milliseconds

1 2 3 4 5 6 7 8 91011>>