/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 | 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 | 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 | 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 712 operator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 714 return __x.base() == __y.base(); 720 operator<(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 722 return __x.base() > __y.base(); 728 operator!=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 730 return __x.base() != __y.base(); 736 operator>(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 738 return __x.base() < __y.base(); 744 operator>=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) [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) 535 __t += __y; 542 operator+(const complex<_Tp>& __x, const _Tp& __y) 545 __t += __y; 552 operator+(const _Tp& __x, const complex<_Tp>& __y) 554 complex<_Tp> __t(__y); 562 operator-(const complex<_Tp>& __x, const complex<_Tp>& __y) 565 __t -= __y; 572 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 | 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);} 3773 swap(valarray<_Tp>& __x, valarray<_Tp>& __y) _NOEXCEPT 3775 __x.swap(__y); [all …]
|
D | map | 513 bool operator()(const _CP& __x, const _CP& __y) const 514 … {return static_cast<const _Compare&>(*this)(__x.__get_value().first, __y.__get_value().first);} 516 bool operator()(const _CP& __x, const _Key& __y) const 517 {return static_cast<const _Compare&>(*this)(__x.__get_value().first, __y);} 519 bool operator()(const _Key& __x, const _CP& __y) const 520 {return static_cast<const _Compare&>(*this)(__x, __y.__get_value().first);} 521 void swap(__map_value_compare&__y) 525 swap(static_cast<_Compare&>(*this), static_cast<_Compare&>(__y)); 532 operator () ( const _K2& __x, const _CP& __y ) const 533 {return static_cast<const _Compare&>(*this) (__x, __y.__get_value().first);} [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 | array | 372 operator==(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 374 return _VSTD::equal(__x.begin(), __x.end(), __y.begin()); 380 operator!=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 382 return !(__x == __y); 388 operator<(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 391 __y.begin(), __y.end()); 397 operator>(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 399 return __y < __x; 405 operator<=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) 407 return !(__y < __x); [all …]
|
D | queue | 206 operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); 211 operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); 335 operator==(const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); 341 operator< (const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); 363 operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 365 return __x.c == __y.c; 371 operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 373 return __x.c < __y.c; 379 operator!=(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) 381 return !(__x == __y); [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/u-boot/include/linux/ |
D | kernel.h | 75 const typeof(y) __y = y; \ 76 (((x) + (__y - 1)) / __y) * __y; \ 180 typeof(y) __y = (y); \ 181 __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })
|
/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/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
|