Home
last modified time | relevance | path

Searched refs:__z (Results 1 – 25 of 36) sorted by relevance

12

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dandroid-comparison-in-temp-failure-retry.c5 typeof(x) __z; \
7 __z = (x); \
8 while (__z == -1); \
9 __z; \
112 long int __z; \ in with_nondependent_variable_type()
114 __z = (x); \ in with_nondependent_variable_type()
115 while (__z == -1); \ in with_nondependent_variable_type()
116 __z; \ in with_nondependent_variable_type()
133 typeof(x) __z; \ in obscured_temp_failure_retry()
135 __z = (x); \ in obscured_temp_failure_retry()
[all …]
Dandroid-comparison-in-temp-failure-retry-custom-macro.c5 typeof(x) __z; \
7 __z = (x); \
8 while (__z == -1); \
9 __z; \
14 typeof(x) __z; \
16 __z = (x); \
17 while (__z == -1); \
18 __z; \
/external/llvm-project/clang/lib/Headers/
D__clang_hip_math.h234 float fmaf(float __x, float __y, float __z) {
235 return __ocml_fma_f32(__x, __y, __z);
371 float norm3df(float __x, float __y, float __z) {
372 return __ocml_len3_f32(__x, __y, __z);
376 float norm4df(float __x, float __y, float __z, float __w) {
377 return __ocml_len4_f32(__x, __y, __z, __w);
429 float rnorm3df(float __x, float __y, float __z) {
430 return __ocml_rlen3_f32(__x, __y, __z);
434 float rnorm4df(float __x, float __y, float __z, float __w) {
435 return __ocml_rlen4_f32(__x, __y, __z, __w);
[all …]
Dtgmath.h52 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument
54 __tg_promote(__z)))
728 __tg_fma(float __x, float __y, float __z) in __tg_fma() argument
729 {return fmaf(__x, __y, __z);} in __tg_fma()
733 __tg_fma(double __x, double __y, double __z) in __tg_fma() argument
734 {return fma(__x, __y, __z);} in __tg_fma()
738 __tg_fma(long double __x,long double __y, long double __z) in __tg_fma() argument
739 {return fmal(__x, __y, __z);} in __tg_fma()
742 #define fma(__x, __y, __z) \ argument
743 __tg_fma(__tg_promote3((__x), (__y), (__z))(__x), \
[all …]
D__clang_hip_cmath.h34 __DEVICE__ float fma(float __x, float __y, float __z) { in fma() argument
35 return ::fmaf(__x, __y, __z); in fma()
113 __DEVICE__ _Float16 fma(_Float16 __x, _Float16 __y, _Float16 __z) { in fma() argument
114 return __ocml_fma_f16(__x, __y, __z); in fma()
389 fma(__T1 __x, __T2 __y, __T3 __z) {
391 return ::fma((__result_type)__x, (__result_type)__y, (__result_type)__z);
400 fma(__T1 __x, __T2 __y, __T3 __z) {
401 return ::fma((double)__x, (double)__y, (double)__z);
Dxmmintrin.h1860 _mm_set_ps(float __z, float __y, float __x, float __w) in _mm_set_ps() argument
1862 return __extension__ (__m128){ __w, __x, __y, __z }; in _mm_set_ps()
1888 _mm_setr_ps(float __z, float __y, float __x, float __w) in _mm_setr_ps() argument
1890 return __extension__ (__m128){ __z, __y, __x, __w }; in _mm_setr_ps()
D__clang_cuda_cmath.h313 fma(__T1 __x, __T2 __y, __T3 __z) {
314 return std::fma((double)__x, (double)__y, (double)__z);
/external/llvm-project/clang/lib/Headers/openmp_wrappers/
Dcomplex_cmath.h194 std::complex<_Tp> __z = log(__x + sqrt(__sqr(__x) + _Tp(1))); in asinh() local
195 return std::complex<_Tp>(copysign(__z.real(), __x.real()), in asinh()
196 copysign(__z.imag(), __x.imag())); in asinh()
227 std::complex<_Tp> __z = log(__x + sqrt(__sqr(__x) - _Tp(1))); in acosh() local
228 return std::complex<_Tp>(copysign(__z.real(), _Tp(0)), in acosh()
229 copysign(__z.imag(), __x.imag())); in acosh()
257 std::complex<_Tp> __z = log((_Tp(1) + __x) / (_Tp(1) - __x)) / _Tp(2); in atanh() local
258 return std::complex<_Tp>(copysign(__z.real(), __x.real()), in atanh()
259 copysign(__z.imag(), __x.imag())); in atanh()
318 std::complex<_Tp> __z = asinh(complex<_Tp>(-__x.imag(), __x.real())); in asin() local
[all …]
/external/clang/lib/Headers/
Dtgmath.h59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument
61 __tg_promote(__z)))
735 __tg_fma(float __x, float __y, float __z) in __tg_fma() argument
736 {return fmaf(__x, __y, __z);} in __tg_fma()
740 __tg_fma(double __x, double __y, double __z) in __tg_fma() argument
741 {return fma(__x, __y, __z);} in __tg_fma()
745 __tg_fma(long double __x,long double __y, long double __z) in __tg_fma() argument
746 {return fmal(__x, __y, __z);} in __tg_fma()
749 #define fma(__x, __y, __z) \ argument
750 __tg_fma(__tg_promote3((__x), (__y), (__z))(__x), \
[all …]
Dxmmintrin.h1814 _mm_set_ps(float __z, float __y, float __x, float __w) in _mm_set_ps() argument
1816 return (__m128){ __w, __x, __y, __z }; in _mm_set_ps()
1842 _mm_setr_ps(float __z, float __y, float __x, float __w) in _mm_setr_ps() argument
1844 return (__m128){ __z, __y, __x, __w }; in _mm_setr_ps()
/external/python/cpython2/Tools/pynche/
DTypeinViewer.py63 self.__z = Entry(subframe, width=3)
64 self.__z.grid(row=0, column=1)
65 self.__z.bindtags(self.__z.bindtags() + ('Normalize', 'Update'))
129 bluestr = self.__z.get() or '0'
142 x, y, z = self.__x, self.__y, self.__z
/external/python/cpython3/Tools/pynche/
DTypeinViewer.py63 self.__z = Entry(subframe, width=3)
64 self.__z.grid(row=0, column=1)
65 self.__z.bindtags(self.__z.bindtags() + ('Normalize', 'Update'))
129 bluestr = self.__z.get() or '0'
142 x, y, z = self.__x, self.__y, self.__z
/external/llvm-project/libcxx/include/
Dcomplex253 template<class _Tp> complex<_Tp> operator*(const complex<_Tp>& __z, const complex<_Tp>& __w);
586 operator*(const complex<_Tp>& __z, const complex<_Tp>& __w)
588 _Tp __a = __z.real();
589 _Tp __b = __z.imag();
665 operator/(const complex<_Tp>& __z, const complex<_Tp>& __w)
668 _Tp __a = __z.real();
669 _Tp __b = __z.imag();
1160 complex<_Tp> __z = log(__x + sqrt(__sqr(__x) + _Tp(1)));
1161 return complex<_Tp>(copysign(__z.real(), __x.real()), copysign(__z.imag(), __x.imag()));
1194 complex<_Tp> __z = log(__x + sqrt(__sqr(__x) - _Tp(1)));
[all …]
Dutility1081 const uint32_t __z = __len + (static_cast<uint32_t>(__c) << 2);
1082 return __shift_mix(__y * __k2 ^ __z * __k3) * __k2;
1101 _Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b)
1105 __b = __rotate(__b + __a + __z, 21);
1110 return pair<_Size, _Size>(__a + __z, __b + __c);
1130 _Size __z = __loadword<_Size>(__s + 24);
1133 _Size __b = __rotate(__a + __z, 52);
1138 _Size __vf = __a + __z;
1141 __z += __loadword<_Size>(__s + __len - 8);
1142 __b = __rotate(__a + __z, 52);
[all …]
D__tree339 // Precondition: __root != nullptr && __z != nullptr.
341 // __z == __root or == a direct or indirect child of __root.
342 // Effects: unlinks __z from the tree rooted at __root, rebalancing as needed.
344 // nor any of its children refer to __z. end_node->__left_
348 __tree_remove(_NodePtr __root, _NodePtr __z) _NOEXCEPT
350 // __z will be removed from the tree. Client still needs to destruct/deallocate it
351 // __y is either __z, or if __z has two children, __tree_next(__z).
354 _NodePtr __y = (__z->__left_ == nullptr || __z->__right_ == nullptr) ?
355 __z : __tree_next(__z);
378 // If we didn't remove __z, do so now by splicing in __y for __z,
[all …]
Drandom1907 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2149 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2400 result_type __z = __x_[__i_] ^ (__rshift<__u>(__x_[__i_]) & __d);
2402 __z ^= __lshift<__s>(__z) & __b;
2403 __z ^= __lshift<__t>(__z) & __c;
2404 return __z ^ __rshift<__l>(__z);
2609 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2901 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
3114 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
3344 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
[all …]
/external/libcxx/include/
Dcomplex258 template<class _Tp> complex<_Tp> operator*(const complex<_Tp>& __z, const complex<_Tp>& __w);
591 operator*(const complex<_Tp>& __z, const complex<_Tp>& __w)
593 _Tp __a = __z.real();
594 _Tp __b = __z.imag();
670 operator/(const complex<_Tp>& __z, const complex<_Tp>& __w)
673 _Tp __a = __z.real();
674 _Tp __b = __z.imag();
1165 complex<_Tp> __z = log(__x + sqrt(__sqr(__x) + _Tp(1)));
1166 return complex<_Tp>(copysign(__z.real(), __x.real()), copysign(__z.imag(), __x.imag()));
1199 complex<_Tp> __z = log(__x + sqrt(__sqr(__x) - _Tp(1)));
[all …]
Dutility1086 const uint32_t __z = __len + (static_cast<uint32_t>(__c) << 2);
1087 return __shift_mix(__y * __k2 ^ __z * __k3) * __k2;
1106 _Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b)
1110 __b = __rotate(__b + __a + __z, 21);
1115 return pair<_Size, _Size>(__a + __z, __b + __c);
1135 _Size __z = __loadword<_Size>(__s + 24);
1138 _Size __b = __rotate(__a + __z, 52);
1143 _Size __vf = __a + __z;
1146 __z += __loadword<_Size>(__s + __len - 8);
1147 __b = __rotate(__a + __z, 52);
[all …]
D__tree333 // Precondition: __root != nullptr && __z != nullptr.
335 // __z == __root or == a direct or indirect child of __root.
336 // Effects: unlinks __z from the tree rooted at __root, rebalancing as needed.
338 // nor any of its children refer to __z. end_node->__left_
342 __tree_remove(_NodePtr __root, _NodePtr __z) _NOEXCEPT
344 // __z will be removed from the tree. Client still needs to destruct/deallocate it
345 // __y is either __z, or if __z has two children, __tree_next(__z).
348 _NodePtr __y = (__z->__left_ == nullptr || __z->__right_ == nullptr) ?
349 __z : __tree_next(__z);
372 // If we didn't remove __z, do so now by splicing in __y for __z,
[all …]
Drandom1892 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2132 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2383 result_type __z = __x_[__i_] ^ (__rshift<__u>(__x_[__i_]) & __d);
2385 __z ^= __lshift<__s>(__z) & __b;
2386 __z ^= __lshift<__t>(__z) & __c;
2387 return __z ^ __rshift<__l>(__z);
2590 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2880 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
3091 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
3321 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
[all …]
/external/llvm-project/clang/test/Headers/Inputs/include/
Dcomplex137 operator*(const complex<_Tp> &__z, const complex<_Tp> &__w) {
138 _Tp __a = __z.real();
139 _Tp __b = __z.imag();
206 operator/(const complex<_Tp> &__z, const complex<_Tp> &__w) {
208 _Tp __a = __z.real();
209 _Tp __b = __z.imag();
/external/llvm-project/llvm/test/Instrumentation/AddressSanitizer/
Dwin-sorted-sections.ll24 @__pobjMapEntryLast = weak_odr dso_local constant i8* null, section "ATL$__z", comdat, align 8
31 ; CHECK: @__pobjMapEntryLast = weak_odr dso_local constant i8* null, section "ATL$__z", comdat, ali…
/external/llvm-project/pstl/include/pstl/internal/
Dnumeric_impl.h316 … [&__op](_ReferenceType1 __x, _ReferenceType1 __y, _ReferenceType2 __z) { __z = __op(__x, __y); }); in __brick_adjacent_difference()
347 … [&__op](_ReferenceType1 __x, _ReferenceType1 __y, _ReferenceType2 __z) { __z = __op(__y, __x); }, in __pattern_adjacent_difference()
Dparallel_backend_tbb.h749 operator()(Iterator1 __x, Iterator2 __z) in operator()
751 *__z = std::move(*__x); in operator()
759 operator()(Iterator1 __x, Iterator2 __z) in operator()
761 ::new (std::addressof(*__z)) _ValueType(std::move(*__x)); in operator()
Dalgorithm_impl.h1101 … [](_RandomAccessIterator __x, _OutputIterator __z) { *__z = *__x; }, __is_vector); in __pattern_copy_if()
1245 [](_ForwardIterator __x, _Tp* __z) { in __remove_elements()
1246 … __internal::__invoke_if_else(std::is_trivial<_Tp>(), [&]() { *__z = std::move(*__x); }, in __remove_elements()
1247 … [&]() { ::new (std::addressof(*__z)) _Tp(std::move(*__x)); }); in __remove_elements()
1289 …[&__pred](bool& __x, _ReferenceType __y, _ReferenceType __z) { __x = !__pred(__y, __z); }, __is_ve… in __pattern_unique()
1388 … [](_RandomAccessIterator __x, _OutputIterator __z) { *__z = *__x; }, __is_vector); in __pattern_unique_copy()
2699 auto __move_values = [](_BidirectionalIterator __x, _Tp* __z) { in __pattern_inplace_merge()
2700 __internal::__invoke_if_else(std::is_trivial<_Tp>(), [&]() { *__z = std::move(*__x); }, in __pattern_inplace_merge()
2701 … [&]() { ::new (std::addressof(*__z)) _Tp(std::move(*__x)); }); in __pattern_inplace_merge()

12