/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 | 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 | 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 | 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) 530 complex<_Tp> __t(__x); 538 operator+(const complex<_Tp>& __x, const _Tp& __y) 540 complex<_Tp> __t(__x); 548 operator+(const _Tp& __x, const complex<_Tp>& __y) 551 __t += __x; 558 operator-(const complex<_Tp>& __x, const complex<_Tp>& __y) 560 complex<_Tp> __t(__x); 568 operator-(const complex<_Tp>& __x, const _Tp& __y) [all …]
|
D | __tree | 61 // Returns: true if __x is a left child of its parent, else false 62 // Precondition: __x != nullptr. 66 __tree_is_left_child(_NodePtr __x) _NOEXCEPT 68 return __x == __x->__parent_->__left_; 71 // Determintes if the subtree rooted at __x is a proper red black subtree. If 72 // __x is a proper subtree, returns the black height (null counts as 1). If 73 // __x is an improper subtree, returns 0. 76 __tree_sub_invariant(_NodePtr __x) 78 if (__x == nullptr) 81 // check __x->__left_ consistency [all …]
|
D | iomanip | 68 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t1& __x) 70 __is.unsetf(__x.__mask_); 78 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t1& __x) 80 __os.unsetf(__x.__mask_); 105 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t2& __x) 107 __is.setf(__x.__mask_); 115 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t2& __x) 117 __os.setf(__x.__mask_); 142 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t3& __x) 144 __is.setf(__x.__base_ == 8 ? ios_base::oct : [all …]
|
D | random | 1681 static result_type next(result_type __x) 1686 const result_type __t0 = __a * (__x % __q); 1687 const result_type __t1 = __r * (__x / __q); 1688 __x = __t0 + (__t0 < __t1) * __m - __t1; 1689 __x += __c - (__x >= __m - __c) * __m; 1690 return __x; 1699 static result_type next(result_type __x) 1704 const result_type __t0 = __a * (__x % __q); 1705 const result_type __t1 = __r * (__x / __q); 1706 __x = __t0 + (__t0 < __t1) * __m - __t1; [all …]
|
D | forward_list | 274 bool operator==(const __forward_list_iterator& __x, 276 {return __x.__ptr_ == __y.__ptr_;} 278 bool operator!=(const __forward_list_iterator& __x, 280 {return !(__x == __y);} 348 bool operator==(const __forward_list_const_iterator& __x, 350 {return __x.__ptr_ == __y.__ptr_;} 352 bool operator!=(const __forward_list_const_iterator& __x, 354 {return !(__x == __y);} 406 __forward_list_base(__forward_list_base&& __x) 408 __forward_list_base(__forward_list_base&& __x, const allocator_type& __a); [all …]
|
D | iterator | 519 next(_ForwardIter __x, 523 _VSTD::advance(__x, __n); 524 return __x; 530 prev(_BidiretionalIter __x, 534 _VSTD::advance(__x, -__n); 535 return __x; 557 _LIBCPP_INLINE_VISIBILITY explicit reverse_iterator(_Iter __x) : __t(__x), current(__x) {} 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) [all …]
|
D | valarray | 476 _Tp operator()(const _Tp& __x) const 477 {return +__x;} 484 _Tp operator()(const _Tp& __x) const 485 {return ~__x;} 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;} 514 _Tp operator()(const _Tp& __x) const 515 {return __f_(__x);} [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 | vector | 505 vector(size_type __n, const_reference __x); 506 vector(size_type __n, const_reference __x, const allocator_type& __a); 549 vector(const vector& __x); 550 vector(const vector& __x, const allocator_type& __a); 552 vector& operator=(const vector& __x); 555 vector(vector&& __x) 562 vector(vector&& __x, const allocator_type& __a); 564 vector& operator=(vector&& __x) 685 _LIBCPP_INLINE_VISIBILITY void push_back(const_reference __x); 687 _LIBCPP_INLINE_VISIBILITY void push_back(value_type&& __x); [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 | __split_buffer | 97 void push_front(const_reference __x); 98 _LIBCPP_INLINE_VISIBILITY void push_back(const_reference __x); 100 void push_front(value_type&& __x); 101 void push_back(value_type&& __x); 112 void __construct_at_end(size_type __n, const_reference __x); 142 void swap(__split_buffer& __x) 204 // Copy constructs __n objects starting at __end_ from __x 209 // Postcondition: [i] == __x for all i in [size() - __n, __n) 212 __split_buffer<_Tp, _Allocator>::__construct_at_end(size_type __n, const_reference __x) 217 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_), __x); [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 | 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); 240 move_if_noexcept(_Tp& __x) _NOEXCEPT 242 return _VSTD::move(__x); [all …]
|
D | functional | 496 _Tp operator()(const _Tp& __x, const _Tp& __y) const 497 {return __x + __y;} 523 _Tp operator()(const _Tp& __x, const _Tp& __y) const 524 {return __x - __y;} 550 _Tp operator()(const _Tp& __x, const _Tp& __y) const 551 {return __x * __y;} 577 _Tp operator()(const _Tp& __x, const _Tp& __y) const 578 {return __x / __y;} 604 _Tp operator()(const _Tp& __x, const _Tp& __y) const 605 {return __x % __y;} [all …]
|
D | regex | 796 operator~(syntax_option_type __x) 798 return syntax_option_type(~int(__x) & 0x1FF); 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; [all …]
|
/external/libcxx/include/experimental/ |
D | optional | 210 __optional_storage(const __optional_storage& __x) 211 : __engaged_(__x.__engaged_) 214 ::new(_VSTD::addressof(__val_)) value_type(__x.__val_); 218 __optional_storage(__optional_storage&& __x) 220 : __engaged_(__x.__engaged_) 223 ::new(_VSTD::addressof(__val_)) value_type(_VSTD::move(__x.__val_)); 261 __optional_storage(const __optional_storage& __x) 262 : __engaged_(__x.__engaged_) 265 ::new(_VSTD::addressof(__val_)) value_type(__x.__val_); 269 __optional_storage(__optional_storage&& __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/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/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/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/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; })
|