/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 | 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 | ammintrin.h | 84 _mm_extract_si64(__m128i __x, __m128i __y) in _mm_extract_si64() argument 86 return (__m128i)__builtin_ia32_extrq((__v2di)__x, (__v16qi)__y); in _mm_extract_si64() 160 _mm_insert_si64(__m128i __x, __m128i __y) in _mm_insert_si64() argument 162 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); 219 operator==(const stack<T1, _C1>& __x, const stack<T1, _C1>& __y); 224 operator< (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y); 230 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 232 return __x.c == __y.c; 238 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 240 return __x.c < __y.c; 246 operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 248 return !(__x == __y); [all …]
|
D | system_error | 473 operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT 475 return __x.category() < __y.category() 476 || (__x.category() == __y.category() && __x.value() < __y.value()); 550 operator<(const error_code& __x, const error_code& __y) _NOEXCEPT 552 return __x.category() < __y.category() 553 || (__x.category() == __y.category() && __x.value() < __y.value()); 558 operator==(const error_code& __x, const error_code& __y) _NOEXCEPT 560 return __x.category() == __y.category() && __x.value() == __y.value(); 565 operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT 567 return __x.category().equivalent(__x.value(), __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 | complex | 261 template<class _Tp> complex<_Tp> operator/(const complex<_Tp>& __x, const complex<_Tp>& __y); 528 operator+(const complex<_Tp>& __x, const complex<_Tp>& __y) 531 __t += __y; 538 operator+(const complex<_Tp>& __x, const _Tp& __y) 541 __t += __y; 548 operator+(const _Tp& __x, const complex<_Tp>& __y) 550 complex<_Tp> __t(__y); 558 operator-(const complex<_Tp>& __x, const complex<_Tp>& __y) 561 __t -= __y; 568 operator-(const complex<_Tp>& __x, const _Tp& __y) [all …]
|
D | array | 229 operator==(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 231 return _VSTD::equal(__x.__elems_, __x.__elems_ + _Size, __y.__elems_); 237 operator!=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 239 return !(__x == __y); 245 operator<(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 247 …return _VSTD::lexicographical_compare(__x.__elems_, __x.__elems_ + _Size, __y.__elems_, __y.__elem… 253 operator>(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 255 return __y < __x; 261 operator<=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 263 return !(__y < __x); [all …]
|
D | iterator | 584 operator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 586 return __x.base() == __y.base(); 592 operator<(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 594 return __x.base() > __y.base(); 600 operator!=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 602 return __x.base() != __y.base(); 608 operator>(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 610 return __x.base() < __y.base(); 616 operator>=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 618 return __x.base() <= __y.base(); [all …]
|
D | utility | 172 operator!=(const _Tp& __x, const _Tp& __y) 174 return !(__x == __y); 180 operator> (const _Tp& __x, const _Tp& __y) 182 return __y < __x; 188 operator<=(const _Tp& __x, const _Tp& __y) 190 return !(__y < __x); 196 operator>=(const _Tp& __x, const _Tp& __y) 198 return !(__x < __y); 267 pair(const _T1& __x, const _T2& __y) 268 : first(__x), second(__y) {} [all …]
|
D | valarray | 492 _Tp operator()(const _Tp& __x, const _Tp& __y) const 493 {return __x << __y;} 500 _Tp operator()(const _Tp& __x, const _Tp& __y) const 501 {return __x >> __y;} 554 _Tp operator()(const _Tp& __x, const _Tp& __y) const 555 {return atan2(__x, __y);} 602 _Tp operator()(const _Tp& __x, const _Tp& __y) const 603 {return pow(__x, __y);} 3628 swap(valarray<_Tp>& __x, valarray<_Tp>& __y) _NOEXCEPT 3630 __x.swap(__y); [all …]
|
D | thread | 207 bool operator==(__thread_id __x, __thread_id __y) _NOEXCEPT 208 {return __x.__id_ == __y.__id_;} 210 bool operator!=(__thread_id __x, __thread_id __y) _NOEXCEPT 211 {return !(__x == __y);} 213 bool operator< (__thread_id __x, __thread_id __y) _NOEXCEPT 214 {return __x.__id_ < __y.__id_;} 216 bool operator<=(__thread_id __x, __thread_id __y) _NOEXCEPT 217 {return !(__y < __x);} 219 bool operator> (__thread_id __x, __thread_id __y) _NOEXCEPT 220 {return __y < __x ;} [all …]
|
D | map | 470 bool operator()(const _CP& __x, const _CP& __y) const 471 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y.__cc.first);} 473 bool operator()(const _CP& __x, const _Key& __y) const 474 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y);} 476 bool operator()(const _Key& __x, const _CP& __y) const 477 {return static_cast<const _Compare&>(*this)(__x, __y.__cc.first);} 478 void swap(__map_value_compare&__y) 482 swap(static_cast<const _Compare&>(*this), static_cast<const _Compare&>(__y)); 489 operator () ( const _K2& __x, const _CP& __y ) const 490 {return static_cast<const _Compare&>(*this) (__x, __y.__cc.first);} [all …]
|
D | queue | 185 operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); 190 operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); 312 operator==(const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); 318 operator< (const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); 324 operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 326 return __x.c == __y.c; 332 operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 334 return __x.c < __y.c; 340 operator!=(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 342 return !(__x == __y); [all …]
|
D | __tree | 207 _NodePtr __y = __x->__right_; 208 __x->__right_ = __y->__left_; 211 __y->__parent_ = __x->__parent_; 213 __x->__parent_->__left_ = __y; 215 __x->__parent_->__right_ = __y; 216 __y->__left_ = __x; 217 __x->__parent_ = __y; 227 _NodePtr __y = __x->__left_; 228 __x->__left_ = __y->__right_; 231 __y->__parent_ = __x->__parent_; [all …]
|
D | set | 747 const set<_Key, _Compare, _Allocator>& __y) 749 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin()); 756 const set<_Key, _Compare, _Allocator>& __y) 758 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end()); 765 const set<_Key, _Compare, _Allocator>& __y) 767 return !(__x == __y); 774 const set<_Key, _Compare, _Allocator>& __y) 776 return __y < __x; 783 const set<_Key, _Compare, _Allocator>& __y) 785 return !(__x < __y); [all …]
|
D | regex | 804 operator&(syntax_option_type __x, syntax_option_type __y) 806 return syntax_option_type(int(__x) & int(__y)); 812 operator|(syntax_option_type __x, syntax_option_type __y) 814 return syntax_option_type(int(__x) | int(__y)); 820 operator^(syntax_option_type __x, syntax_option_type __y) 822 return syntax_option_type(int(__x) ^ int(__y)); 827 operator&=(syntax_option_type& __x, syntax_option_type __y) 829 __x = __x & __y; 835 operator|=(syntax_option_type& __x, syntax_option_type __y) 837 __x = __x | __y; [all …]
|
D | __bit_reference | 87 swap(__bit_reference<_Cp> __x, __bit_reference<_Cp> __y) _NOEXCEPT 90 __x = __y; 91 __y = __t; 97 swap(__bit_reference<_Cp> __x, __bit_reference<_Dp> __y) _NOEXCEPT 100 __x = __y; 101 __y = __t; 107 swap(__bit_reference<_Cp> __x, bool& __y) _NOEXCEPT 110 __x = __y; 111 __y = __t; 117 swap(bool& __x, __bit_reference<_Cp> __y) _NOEXCEPT [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/libnl/include/ |
D | netlink-local.h | 136 ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; }) 138 ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
|
/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/libcxx/include/experimental/ |
D | optional | 578 operator==(const optional<_Tp>& __x, const optional<_Tp>& __y) 580 if (static_cast<bool>(__x) != static_cast<bool>(__y)) 584 return *__x == *__y; 591 operator!=(const optional<_Tp>& __x, const optional<_Tp>& __y) 593 return !(__x == __y); 600 operator<(const optional<_Tp>& __x, const optional<_Tp>& __y) 602 if (!static_cast<bool>(__y)) 606 return *__x < *__y; 613 operator>(const optional<_Tp>& __x, const optional<_Tp>& __y) 615 return __y < __x; [all …]
|
/external/clang/www/ |
D | libstdc++4.4-clang0x.patch | 282 + pair(_U1&& __x, const _T2& __y) 283 + : first(std::forward<_U1>(__x)), second(__y) { } 287 + pair(const _T1& __x, _U2&& __y) 288 + : first(__x), second(std::forward<_U2>(__y)) { } 293 pair(_U1&& __x, _U2&& __y) 295 - second(std::forward<_U2>(__y)) { } 296 + : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } 441 unique_ptr<_Tp, _Tp_Deleter>& __y) 442 { __x.swap(__y); } 447 - unique_ptr<_Tp, _Tp_Deleter>& __y) [all …]
|