/external/clang/lib/Headers/ |
D | tgmath.h | 57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ argument 58 __tg_promote(__y))) 59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument 60 __tg_promote(__y) + \ 473 __tg_pow(float __x, float __y) {return powf(__x, __y);} in __tg_pow() argument 477 __tg_pow(double __x, double __y) {return pow(__x, __y);} in __tg_pow() argument 481 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} in __tg_pow() argument 485 __tg_pow(float _Complex __x, float _Complex __y) {return cpowf(__x, __y);} in __tg_pow() argument 489 __tg_pow(double _Complex __x, double _Complex __y) {return cpow(__x, __y);} in __tg_pow() argument 493 __tg_pow(long double _Complex __x, long double _Complex __y) in __tg_pow() argument [all …]
|
D | __clang_cuda_cmath.h | 54 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); } in atan2() argument 61 __DEVICE__ float fmod(float __x, float __y) { return ::fmodf(__x, __y); } in fmod() argument 77 __DEVICE__ bool isgreater(float __x, float __y) { in isgreater() argument 78 return __builtin_isgreater(__x, __y); in isgreater() 80 __DEVICE__ bool isgreater(double __x, double __y) { in isgreater() argument 81 return __builtin_isgreater(__x, __y); in isgreater() 83 __DEVICE__ bool isgreaterequal(float __x, float __y) { in isgreaterequal() argument 84 return __builtin_isgreaterequal(__x, __y); in isgreaterequal() 86 __DEVICE__ bool isgreaterequal(double __x, double __y) { in isgreaterequal() argument 87 return __builtin_isgreaterequal(__x, __y); in isgreaterequal() [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() 45 unsigned long long __y, unsigned long long *__p) 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() 62 unsigned long long __y, unsigned long long *__p) 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 | 115 __ror(uint32_t __x, uint32_t __y) { in __ror() argument 116 __y %= 32; in __ror() 117 if (__y == 0) in __ror() 119 return (__x >> __y) | (__x << (32 - __y)); in __ror() 123 __rorll(uint64_t __x, uint32_t __y) { in __rorll() argument 124 __y %= 64; in __rorll() 125 if (__y == 0) 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 …]
|
D | ammintrin.h | 79 _mm_extract_si64(__m128i __x, __m128i __y) in _mm_extract_si64() argument 81 return (__m128i)__builtin_ia32_extrq((__v2di)__x, (__v16qi)__y); in _mm_extract_si64() 151 _mm_insert_si64(__m128i __x, __m128i __y) in _mm_insert_si64() argument 153 return (__m128i)__builtin_ia32_insertq((__v2di)__x, (__v2di)__y); in _mm_insert_si64()
|
/external/libcxx/include/ |
D | typeindex | 63 type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {} 66 bool operator==(const type_index& __y) const _NOEXCEPT 67 {return *__t_ == *__y.__t_;} 69 bool operator!=(const type_index& __y) const _NOEXCEPT 70 {return *__t_ != *__y.__t_;} 72 bool operator< (const type_index& __y) const _NOEXCEPT 73 {return __t_->before(*__y.__t_);} 75 bool operator<=(const type_index& __y) const _NOEXCEPT 76 {return !__y.__t_->before(*__t_);} 78 bool operator> (const type_index& __y) const _NOEXCEPT [all …]
|
D | stack | 99 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y); 104 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y); 225 operator==(const stack<T1, _C1>& __x, const stack<T1, _C1>& __y); 230 operator< (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y); 236 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 238 return __x.c == __y.c; 244 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 246 return __x.c < __y.c; 252 operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 254 return !(__x == __y); [all …]
|
D | system_error | 491 operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT 493 return __x.category() < __y.category() 494 || (__x.category() == __y.category() && __x.value() < __y.value()); 568 operator<(const error_code& __x, const error_code& __y) _NOEXCEPT 570 return __x.category() < __y.category() 571 || (__x.category() == __y.category() && __x.value() < __y.value()); 576 operator==(const error_code& __x, const error_code& __y) _NOEXCEPT 578 return __x.category() == __y.category() && __x.value() == __y.value(); 583 operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT 585 return __x.category().equivalent(__x.value(), __y) [all …]
|
D | iterator | 137 -> decltype(__y.base() - __x.base()); // constexpr in C++17 676 operator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 678 return __x.base() == __y.base(); 684 operator<(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 686 return __x.base() > __y.base(); 692 operator!=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 694 return __x.base() != __y.base(); 700 operator>(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 702 return __x.base() < __y.base(); 708 operator>=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) [all …]
|
D | random | 1894 const linear_congruential_engine& __y) 1895 {return __x.__x_ == __y.__x_;} 1898 const linear_congruential_engine& __y) 1899 {return !(__x == __y);} 2023 _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 2033 _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 2140 _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 2150 _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 2394 _Bp, _Tp, _Cp, _Lp, _Fp>& __y) 2396 if (__x.__i_ == __y.__i_) [all …]
|
D | stdlib.h | 120 …CPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(__x, __y);} in div() argument 122 …CPP_INLINE_VISIBILITY lldiv_t div(long long __x, long long __y) _NOEXCEPT {return lldiv(__x, __y);} in div() argument
|
D | complex | 258 template<class _Tp> complex<_Tp> operator/(const complex<_Tp>& __x, const complex<_Tp>& __y); 531 operator+(const complex<_Tp>& __x, const complex<_Tp>& __y) 534 __t += __y; 541 operator+(const complex<_Tp>& __x, const _Tp& __y) 544 __t += __y; 551 operator+(const _Tp& __x, const complex<_Tp>& __y) 553 complex<_Tp> __t(__y); 561 operator-(const complex<_Tp>& __x, const complex<_Tp>& __y) 564 __t -= __y; 571 operator-(const complex<_Tp>& __x, const _Tp& __y) [all …]
|
D | map | 472 bool operator()(const _CP& __x, const _CP& __y) const 473 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y.__cc.first);} 475 bool operator()(const _CP& __x, const _Key& __y) const 476 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y);} 478 bool operator()(const _Key& __x, const _CP& __y) const 479 {return static_cast<const _Compare&>(*this)(__x, __y.__cc.first);} 480 void swap(__map_value_compare&__y) 484 swap(static_cast<const _Compare&>(*this), static_cast<const _Compare&>(__y)); 491 operator () ( const _K2& __x, const _CP& __y ) const 492 {return static_cast<const _Compare&>(*this) (__x, __y.__cc.first);} [all …]
|
D | array | 231 operator==(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 233 return _VSTD::equal(__x.__elems_, __x.__elems_ + _Size, __y.__elems_); 239 operator!=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 241 return !(__x == __y); 247 operator<(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 249 …return _VSTD::lexicographical_compare(__x.__elems_, __x.__elems_ + _Size, __y.__elems_, __y.__elem… 255 operator>(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 257 return __y < __x; 263 operator<=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 265 return !(__y < __x); [all …]
|
D | valarray | 491 _Tp operator()(const _Tp& __x, const _Tp& __y) const 492 {return __x << __y;} 499 _Tp operator()(const _Tp& __x, const _Tp& __y) const 500 {return __x >> __y;} 553 _Tp operator()(const _Tp& __x, const _Tp& __y) const 554 {return atan2(__x, __y);} 601 _Tp operator()(const _Tp& __x, const _Tp& __y) const 602 {return pow(__x, __y);} 3725 swap(valarray<_Tp>& __x, valarray<_Tp>& __y) _NOEXCEPT 3727 __x.swap(__y); [all …]
|
D | thread | 225 bool operator==(__thread_id __x, __thread_id __y) _NOEXCEPT 226 {return __libcpp_thread_id_equal(__x.__id_, __y.__id_);} 228 bool operator!=(__thread_id __x, __thread_id __y) _NOEXCEPT 229 {return !(__x == __y);} 231 bool operator< (__thread_id __x, __thread_id __y) _NOEXCEPT 232 {return __libcpp_thread_id_less(__x.__id_, __y.__id_);} 234 bool operator<=(__thread_id __x, __thread_id __y) _NOEXCEPT 235 {return !(__y < __x);} 237 bool operator> (__thread_id __x, __thread_id __y) _NOEXCEPT 238 {return __y < __x ;} [all …]
|
D | queue | 186 operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); 191 operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); 319 operator==(const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); 325 operator< (const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); 331 operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 333 return __x.c == __y.c; 339 operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 341 return __x.c < __y.c; 347 operator!=(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 349 return !(__x == __y); [all …]
|
D | __tree | 236 _NodePtr __y = __x->__right_; 237 __x->__right_ = __y->__left_; 240 __y->__parent_ = __x->__parent_; 242 __x->__parent_->__left_ = __y; 244 __x->__parent_unsafe()->__right_ = __y; 245 __y->__left_ = __x; 246 __x->__set_parent(__y); 256 _NodePtr __y = __x->__left_; 257 __x->__left_ = __y->__right_; 260 __y->__parent_ = __x->__parent_; [all …]
|
D | set | 750 const set<_Key, _Compare, _Allocator>& __y) 752 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin()); 759 const set<_Key, _Compare, _Allocator>& __y) 761 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end()); 768 const set<_Key, _Compare, _Allocator>& __y) 770 return !(__x == __y); 777 const set<_Key, _Compare, _Allocator>& __y) 779 return __y < __x; 786 const set<_Key, _Compare, _Allocator>& __y) 788 return !(__x < __y); [all …]
|
D | utility | 218 operator!=(const _Tp& __x, const _Tp& __y) 220 return !(__x == __y); 226 operator> (const _Tp& __x, const _Tp& __y) 228 return __y < __x; 234 operator<=(const _Tp& __x, const _Tp& __y) 236 return !(__y < __x); 242 operator>=(const _Tp& __x, const _Tp& __y) 244 return !(__x < __y); 551 operator==(const pair<_T1,_T2>& __x, const pair<_T1,_T2>& __y) 553 return __x.first == __y.first && __x.second == __y.second; [all …]
|
D | unordered_map | 403 void swap(__unordered_map_hasher&__y) 407 swap(static_cast<const _Hash&>(*this), static_cast<const _Hash&>(__y)); 432 void swap(__unordered_map_hasher&__y) 436 swap(__hash_, __y.__hash_); 444 __unordered_map_hasher<_Key, _Cp, _Hash, __b>& __y) 445 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) 447 __x.swap(__y); 466 bool operator()(const _Cp& __x, const _Cp& __y) const 467 {return static_cast<const _Pred&>(*this)(__x.__cc.first, __y.__cc.first);} 469 bool operator()(const _Cp& __x, const _Key& __y) const [all …]
|
/external/clang/test/CodeGen/ |
D | adc-builtins.c | 8 unsigned int __y, unsigned int *__p) { in test_addcarry_u32() argument 11 return _addcarry_u32(__cf, __x, __y, __p); in test_addcarry_u32() 15 unsigned long long __y, in test_addcarry_u64() argument 19 return _addcarry_u64(__cf, __x, __y, __p); in test_addcarry_u64() 23 unsigned int __y, unsigned int *__p) { in test_subborrow_u32() argument 26 return _subborrow_u32(__cf, __x, __y, __p); in test_subborrow_u32() 30 unsigned long long __y, in test_subborrow_u64() argument 34 return _subborrow_u64(__cf, __x, __y, __p); in test_subborrow_u64()
|
D | adx-builtins.c | 6 unsigned int __y, unsigned int *__p) { in test_addcarryx_u32() argument 9 return _addcarryx_u32(__cf, __x, __y, __p); in test_addcarryx_u32() 13 unsigned long long __y, in test_addcarryx_u64() argument 17 return _addcarryx_u64(__cf, __x, __y, __p); in test_addcarryx_u64()
|
/external/libcxx/include/ext/ |
D | hash_map | 270 bool operator()(const _Tp& __x, const _Tp& __y) const 271 {return static_cast<const _Pred&>(*this)(__x.first, __y.first);} 273 bool operator()(const typename _Tp::first_type& __x, const _Tp& __y) const 274 {return static_cast<const _Pred&>(*this)(__x, __y.first);} 276 bool operator()(const _Tp& __x, const typename _Tp::first_type& __y) const 277 {return static_cast<const _Pred&>(*this)(__x.first, __y);} 280 const typename _Tp::first_type& __y) const 281 {return static_cast<const _Pred&>(*this)(__x, __y);} 293 bool operator()(const _Tp& __x, const _Tp& __y) const 294 {return __pred_(__x.first, __y.first);} [all …]
|
/external/libnl/include/netlink-private/ |
D | netlink.h | 171 ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; }) 173 ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
|