/external/clang/lib/Headers/ |
D | tgmath.h | 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x))) argument 57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ argument 59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument 67 __tg_acos(float __x) {return acosf(__x);} in __tg_acos() argument 71 __tg_acos(double __x) {return acos(__x);} in __tg_acos() argument 75 __tg_acos(long double __x) {return acosl(__x);} in __tg_acos() argument 79 __tg_acos(float _Complex __x) {return cacosf(__x);} in __tg_acos() argument 83 __tg_acos(double _Complex __x) {return cacos(__x);} in __tg_acos() argument 87 __tg_acos(long double _Complex __x) {return cacosl(__x);} in __tg_acos() argument 90 #define acos(__x) __tg_acos(__tg_promote1((__x))(__x)) argument [all …]
|
D | __clang_cuda_cmath.h | 49 __DEVICE__ float abs(float __x) { return ::fabsf(__x); } in abs() argument 50 __DEVICE__ double abs(double __x) { return ::fabs(__x); } in abs() argument 51 __DEVICE__ float acos(float __x) { return ::acosf(__x); } in acos() argument 52 __DEVICE__ float asin(float __x) { return ::asinf(__x); } in asin() argument 53 __DEVICE__ float atan(float __x) { return ::atanf(__x); } in atan() argument 54 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); } in atan2() argument 55 __DEVICE__ float ceil(float __x) { return ::ceilf(__x); } in ceil() argument 56 __DEVICE__ float cos(float __x) { return ::cosf(__x); } in cos() argument 57 __DEVICE__ float cosh(float __x) { return ::coshf(__x); } in cosh() argument 58 __DEVICE__ float exp(float __x) { return ::expf(__x); } in exp() argument [all …]
|
D | adxintrin.h | 36 _addcarryx_u32(unsigned char __cf, unsigned int __x, unsigned int __y, in _addcarryx_u32() argument 39 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p); in _addcarryx_u32() 44 _addcarryx_u64(unsigned char __cf, unsigned long long __x, in _addcarryx_u64() argument 47 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p); in _addcarryx_u64() 53 _addcarry_u32(unsigned char __cf, unsigned int __x, unsigned int __y, in _addcarry_u32() argument 56 return __builtin_ia32_addcarry_u32(__cf, __x, __y, __p); in _addcarry_u32() 61 _addcarry_u64(unsigned char __cf, unsigned long long __x, in _addcarry_u64() argument 64 return __builtin_ia32_addcarry_u64(__cf, __x, __y, __p); in _addcarry_u64() 69 _subborrow_u32(unsigned char __cf, unsigned int __x, unsigned int __y, in _subborrow_u32() argument 72 return __builtin_ia32_subborrow_u32(__cf, __x, __y, __p); in _subborrow_u32() [all …]
|
D | arm_acle.h | 75 __swp(uint32_t __x, volatile uint32_t *__p) { in __swp() argument 79 while (__builtin_arm_strex(__x, __p)); in __swp() 115 __ror(uint32_t __x, uint32_t __y) { in __ror() argument 118 return __x; in __ror() 119 return (__x >> __y) | (__x << (32 - __y)); in __ror() 123 __rorll(uint64_t __x, uint32_t __y) { in __rorll() argument 126 return __x; in __rorll() 127 return (__x >> __y) | (__x << (64 - __y)); in __rorll() 131 __rorl(unsigned long __x, uint32_t __y) { in __rorl() argument 133 return __ror(__x, __y); in __rorl() [all …]
|
/external/libcxx/include/ |
D | bit | 42 int __ctz(unsigned __x) { return __builtin_ctz(__x); } 45 int __ctz(unsigned long __x) { return __builtin_ctzl(__x); } 48 int __ctz(unsigned long long __x) { return __builtin_ctzll(__x); } 52 int __clz(unsigned __x) { return __builtin_clz(__x); } 55 int __clz(unsigned long __x) { return __builtin_clzl(__x); } 58 int __clz(unsigned long long __x) { return __builtin_clzll(__x); } 62 int __popcount(unsigned __x) { return __builtin_popcount(__x); } 65 int __popcount(unsigned long __x) { return __builtin_popcountl(__x); } 68 int __popcount(unsigned long long __x) { return __builtin_popcountll(__x); } 72 // Precondition: __x != 0 [all …]
|
D | complex | 259 template<class _Tp> complex<_Tp> operator/(const complex<_Tp>& __x, const complex<_Tp>& __y); 532 operator+(const complex<_Tp>& __x, const complex<_Tp>& __y) 534 complex<_Tp> __t(__x); 542 operator+(const complex<_Tp>& __x, const _Tp& __y) 544 complex<_Tp> __t(__x); 552 operator+(const _Tp& __x, const complex<_Tp>& __y) 555 __t += __x; 562 operator-(const complex<_Tp>& __x, const complex<_Tp>& __y) 564 complex<_Tp> __t(__x); 572 operator-(const complex<_Tp>& __x, const _Tp& __y) [all …]
|
D | __tree | 68 // Returns: true if __x is a left child of its parent, else false 69 // Precondition: __x != nullptr. 73 __tree_is_left_child(_NodePtr __x) _NOEXCEPT 75 return __x == __x->__parent_->__left_; 78 // Determines if the subtree rooted at __x is a proper red black subtree. If 79 // __x is a proper subtree, returns the black height (null counts as 1). If 80 // __x is an improper subtree, returns 0. 83 __tree_sub_invariant(_NodePtr __x) 85 if (__x == nullptr) 88 // check __x->__left_ consistency [all …]
|
D | random | 1683 static result_type next(result_type __x) 1688 const result_type __t0 = __a * (__x % __q); 1689 const result_type __t1 = __r * (__x / __q); 1690 __x = __t0 + (__t0 < __t1) * __m - __t1; 1691 __x += __c - (__x >= __m - __c) * __m; 1692 return __x; 1701 static result_type next(result_type __x) 1706 const result_type __t0 = __a * (__x % __q); 1707 const result_type __t1 = __r * (__x / __q); 1708 __x = __t0 + (__t0 < __t1) * __m - __t1; [all …]
|
D | iomanip | 70 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t1& __x) 72 __is.unsetf(__x.__mask_); 80 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t1& __x) 82 __os.unsetf(__x.__mask_); 107 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t2& __x) 109 __is.setf(__x.__mask_); 117 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t2& __x) 119 __os.setf(__x.__mask_); 144 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t3& __x) 146 __is.setf(__x.__base_ == 8 ? ios_base::oct : [all …]
|
D | forward_list | 353 bool operator==(const __forward_list_iterator& __x, 355 {return __x.__ptr_ == __y.__ptr_;} 357 bool operator!=(const __forward_list_iterator& __x, 359 {return !(__x == __y);} 437 bool operator==(const __forward_list_const_iterator& __x, 439 {return __x.__ptr_ == __y.__ptr_;} 441 bool operator!=(const __forward_list_const_iterator& __x, 443 {return !(__x == __y);} 502 __forward_list_base(__forward_list_base&& __x) 505 __forward_list_base(__forward_list_base&& __x, const allocator_type& __a); [all …]
|
D | stdlib.h | 111 inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);} in abs() argument 113 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);} in abs() argument 116 …line _LIBCPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(_… in div() argument 118 …line _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x, long long __y) _NOEXCEPT {return lldiv(_… in div() argument
|
D | optional | 1002 __operator_arrow(true_type, _Up& __x) 1004 return _VSTD::addressof(__x); 1010 __operator_arrow(false_type, _Up& __x) 1012 return &__x; 1029 operator==(const optional<_Tp>& __x, const optional<_Up>& __y) 1031 if (static_cast<bool>(__x) != static_cast<bool>(__y)) 1033 if (!static_cast<bool>(__x)) 1035 return *__x == *__y; 1045 operator!=(const optional<_Tp>& __x, const optional<_Up>& __y) 1047 if (static_cast<bool>(__x) != static_cast<bool>(__y)) [all …]
|
D | valarray | 477 _Tp operator()(const _Tp& __x) const 478 {return +__x;} 485 _Tp operator()(const _Tp& __x) const 486 {return ~__x;} 493 _Tp operator()(const _Tp& __x, const _Tp& __y) const 494 {return __x << __y;} 501 _Tp operator()(const _Tp& __x, const _Tp& __y) const 502 {return __x >> __y;} 515 _Tp operator()(const _Tp& __x) const 516 {return __f_(__x);} [all …]
|
D | system_error | 306 operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT 308 return __x.category() < __y.category() 309 || (__x.category() == __y.category() && __x.value() < __y.value()); 383 operator<(const error_code& __x, const error_code& __y) _NOEXCEPT 385 return __x.category() < __y.category() 386 || (__x.category() == __y.category() && __x.value() < __y.value()); 391 operator==(const error_code& __x, const error_code& __y) _NOEXCEPT 393 return __x.category() == __y.category() && __x.value() == __y.value(); 398 operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT 400 return __x.category().equivalent(__x.value(), __y) [all …]
|
D | iterator | 136 -> decltype(__y.base() - __x.base()); // constexpr in C++17 620 next(_InputIter __x, 623 _VSTD::advance(__x, __n); 624 return __x; 634 prev(_BidirectionalIter __x, 637 _VSTD::advance(__x, -__n); 638 return __x; 675 explicit reverse_iterator(_Iter __x) : __t(__x), current(__x) {} 712 operator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 714 return __x.base() == __y.base(); [all …]
|
D | vector | 518 vector(size_type __n, const value_type& __x); 519 vector(size_type __n, const value_type& __x, const allocator_type& __a); 558 vector(const vector& __x); 559 vector(const vector& __x, const allocator_type& __a); 561 vector& operator=(const vector& __x); 571 vector(vector&& __x) 579 vector(vector&& __x, const allocator_type& __a); 581 vector& operator=(vector&& __x) 703 void __emplace_back(const value_type& __x) { push_back(__x); } 712 _LIBCPP_INLINE_VISIBILITY void push_back(const_reference __x); [all …]
|
D | stack | 105 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y); 110 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y); 230 operator==(const stack<T1, _C1>& __x, const stack<T1, _C1>& __y); 235 operator< (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y); 257 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 259 return __x.c == __y.c; 265 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 267 return __x.c < __y.c; 273 operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 275 return !(__x == __y); [all …]
|
D | __split_buffer | 102 void push_front(const_reference __x); 103 _LIBCPP_INLINE_VISIBILITY void push_back(const_reference __x); 105 void push_front(value_type&& __x); 106 void push_back(value_type&& __x); 115 void __construct_at_end(size_type __n, const_reference __x); 147 void swap(__split_buffer& __x) 209 // Copy constructs __n objects starting at __end_ from __x 214 // Postcondition: [i] == __x for all i in [size() - __n, __n) 217 __split_buffer<_Tp, _Allocator>::__construct_at_end(size_type __n, const_reference __x) 222 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_), __x); [all …]
|
/external/u-boot/include/linux/ |
D | kernel.h | 81 typeof(x) __x = (x); \ 82 __x - (__x % (y)); \ 93 typeof(x) __x = x; \ 96 ((typeof(divisor))-1) > 0 || (__x) > 0) ? \ 97 (((__x) + ((__d) / 2)) / (__d)) : \ 98 (((__x) - ((__d) / 2)) / (__d)); \ 139 long __x = (x); \ 140 ret = (__x < 0) ? -__x : __x; \ 142 int __x = (x); \ 143 ret = (__x < 0) ? -__x : __x; \ [all …]
|
/external/clang/www/ |
D | libstdc++4.4-clang0x.patch | 115 - swap(vector&& __x) 117 swap(vector& __x) 120 std::swap(this->_M_impl._M_start, __x._M_impl._M_start); 121 std::swap(this->_M_impl._M_finish, __x._M_impl._M_finish); 130 - swap(deque&& __x) 132 swap(deque& __x) 135 std::swap(this->_M_impl._M_start, __x._M_impl._M_start); 136 std::swap(this->_M_impl._M_finish, __x._M_impl._M_finish); 157 - swap(list&& __x) 159 swap(list& __x) [all …]
|
/external/clang/test/CodeGen/ |
D | adc-builtins.c | 7 unsigned char test_addcarry_u32(unsigned char __cf, unsigned int __x, in test_addcarry_u32() argument 11 return _addcarry_u32(__cf, __x, __y, __p); in test_addcarry_u32() 14 unsigned char test_addcarry_u64(unsigned char __cf, unsigned long long __x, in test_addcarry_u64() argument 19 return _addcarry_u64(__cf, __x, __y, __p); in test_addcarry_u64() 22 unsigned char test_subborrow_u32(unsigned char __cf, unsigned int __x, in test_subborrow_u32() argument 26 return _subborrow_u32(__cf, __x, __y, __p); in test_subborrow_u32() 29 unsigned char test_subborrow_u64(unsigned char __cf, unsigned long long __x, in test_subborrow_u64() argument 34 return _subborrow_u64(__cf, __x, __y, __p); in test_subborrow_u64()
|
D | adx-builtins.c | 5 unsigned char test_addcarryx_u32(unsigned char __cf, unsigned int __x, in test_addcarryx_u32() argument 9 return _addcarryx_u32(__cf, __x, __y, __p); in test_addcarryx_u32() 12 unsigned char test_addcarryx_u64(unsigned char __cf, unsigned long long __x, in test_addcarryx_u64() argument 17 return _addcarryx_u64(__cf, __x, __y, __p); in test_addcarryx_u64()
|
/external/libcxx/include/ext/ |
D | hash_map | 236 size_t operator()(const _Tp& __x) const 237 {return static_cast<const _Hash&>(*this)(__x.first);} 239 size_t operator()(const typename _Tp::first_type& __x) const 240 {return static_cast<const _Hash&>(*this)(__x);} 252 size_t operator()(const _Tp& __x) const 253 {return __hash_(__x.first);} 255 size_t operator()(const typename _Tp::first_type& __x) const 256 {return __hash_(__x);} 270 bool operator()(const _Tp& __x, const _Tp& __y) const 271 {return static_cast<const _Pred&>(*this)(__x.first, __y.first);} [all …]
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | movmsk.ll | 11 %__x.addr.i = alloca double, align 8 13 %0 = bitcast double* %__x.addr.i to i8* 15 store double %d1, double* %__x.addr.i, align 8 29 %__x.addr.i = alloca double, align 8 32 %0 = bitcast double* %__x.addr.i to i8* 34 store double %add, double* %__x.addr.i, align 8 48 %__x.addr.i = alloca float, align 4 50 %0 = bitcast float* %__x.addr.i to i8* 52 store float %f1, float* %__x.addr.i, align 4 65 %__x.addr.i = alloca float, align 4 [all …]
|
/external/u-boot/arch/nios2/lib/ |
D | longlong.h | 93 UWtype __x; \ 94 __x = (al) + (bl); \ 95 (sh) = (ah) + (bh) + (__x < (al)); \ 96 (sl) = __x; \ 103 UWtype __x; \ 104 __x = (al) - (bl); \ 105 (sh) = (ah) - (bh) - (__x > (al)); \ 106 (sl) = __x; \
|