/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); 224 operator==(const stack<T1, _C1>& __x, const stack<T1, _C1>& __y); 229 operator< (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y); 235 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 237 return __x.c == __y.c; 243 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 245 return __x.c < __y.c; 251 operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) 253 return !(__x == __y); [all …]
|
D | system_error | 492 operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT 494 return __x.category() < __y.category() 495 || (__x.category() == __y.category() && __x.value() < __y.value()); 569 operator<(const error_code& __x, const error_code& __y) _NOEXCEPT 571 return __x.category() < __y.category() 572 || (__x.category() == __y.category() && __x.value() < __y.value()); 577 operator==(const error_code& __x, const error_code& __y) _NOEXCEPT 579 return __x.category() == __y.category() && __x.value() == __y.value(); 584 operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT 586 return __x.category().equivalent(__x.value(), __y) [all …]
|
D | random | 1896 const linear_congruential_engine& __y) 1897 {return __x.__x_ == __y.__x_;} 1900 const linear_congruential_engine& __y) 1901 {return !(__x == __y);} 2025 _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 2035 _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 2142 _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 2152 _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 2397 _Bp, _Tp, _Cp, _Lp, _Fp>& __y) 2399 if (__x.__i_ == __y.__i_) [all …]
|
D | iterator | 136 -> decltype(__y.base() - __x.base()); // constexpr in C++17 694 operator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 696 return __x.base() == __y.base(); 702 operator<(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 704 return __x.base() > __y.base(); 710 operator!=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 712 return __x.base() != __y.base(); 718 operator>(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 720 return __x.base() < __y.base(); 726 operator>=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) [all …]
|
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 | stdlib.h | 116 …CPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(__x, __y);} in div() argument 118 …CPP_INLINE_VISIBILITY lldiv_t div(long long __x, long long __y) _NOEXCEPT {return lldiv(__x, __y);} in div() argument
|
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<_Compare&>(*this), static_cast<_Compare&>(__y)); 491 operator () ( const _K2& __x, const _CP& __y ) const 492 {return static_cast<const _Compare&>(*this) (__x, __y.__cc.first);} [all …]
|
D | valarray | 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;} 555 _Tp operator()(const _Tp& __x, const _Tp& __y) const 556 {return atan2(__x, __y);} 603 _Tp operator()(const _Tp& __x, const _Tp& __y) const 604 {return pow(__x, __y);} 3715 swap(valarray<_Tp>& __x, valarray<_Tp>& __y) _NOEXCEPT 3717 __x.swap(__y); [all …]
|
D | thread | 228 bool operator==(__thread_id __x, __thread_id __y) _NOEXCEPT 229 {return __libcpp_thread_id_equal(__x.__id_, __y.__id_);} 231 bool operator!=(__thread_id __x, __thread_id __y) _NOEXCEPT 232 {return !(__x == __y);} 234 bool operator< (__thread_id __x, __thread_id __y) _NOEXCEPT 235 {return __libcpp_thread_id_less(__x.__id_, __y.__id_);} 237 bool operator<=(__thread_id __x, __thread_id __y) _NOEXCEPT 238 {return !(__y < __x);} 240 bool operator> (__thread_id __x, __thread_id __y) _NOEXCEPT 241 {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); 315 operator==(const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); 321 operator< (const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); 327 operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 329 return __x.c == __y.c; 335 operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 337 return __x.c < __y.c; 343 operator!=(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 345 return !(__x == __y); [all …]
|
D | array | 359 operator==(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 361 return _VSTD::equal(__x.begin(), __x.end(), __y.begin()); 367 operator!=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 369 return !(__x == __y); 375 operator<(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 378 __y.begin(), __y.end()); 384 operator>(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 386 return __y < __x; 392 operator<=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 394 return !(__y < __x); [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/tensorflow/tensorflow/stream_executor/lib/ |
D | status_macros.h | 33 #define SE_MACRO_CONCAT_INNER(__x, __y) __x##__y argument 34 #define SE_MACRO_CONCAT(__x, __y) SE_MACRO_CONCAT_INNER(__x, __y) argument
|
/external/libcxx/include/experimental/ |
D | coroutine | 173 bool operator==(coroutine_handle<> __x, coroutine_handle<> __y) _NOEXCEPT { 174 return __x.address() == __y.address(); 177 bool operator!=(coroutine_handle<> __x, coroutine_handle<> __y) _NOEXCEPT { 178 return !(__x == __y); 181 bool operator<(coroutine_handle<> __x, coroutine_handle<> __y) _NOEXCEPT { 182 return less<void*>()(__x.address(), __y.address()); 185 bool operator>(coroutine_handle<> __x, coroutine_handle<> __y) _NOEXCEPT { 186 return __y < __x; 189 bool operator<=(coroutine_handle<> __x, coroutine_handle<> __y) _NOEXCEPT { 190 return !(__x > __y); [all …]
|
/external/fio/ |
D | minmax.h | 22 typeof(y) __y = (y); \ 23 __x == 0 ? __y : ((__y == 0) ? __x : min(__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/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; })
|
/external/python/cpython2/Tools/pynche/ |
D | TypeinViewer.py | 52 self.__y = Entry(subframe, width=3) 53 self.__y.grid(row=0, column=1) 54 self.__y.bindtags(self.__y.bindtags() + ('Normalize', 'Update')) 128 greenstr = self.__y.get() or '0' 142 x, y, z = self.__x, self.__y, self.__z
|