Home
last modified time | relevance | path

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

/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.h605 _mm_set_ps(float __z, float __y, float __x, float __w) in _mm_set_ps() argument
607 return (__m128){ __w, __x, __y, __z }; in _mm_set_ps()
611 _mm_setr_ps(float __z, float __y, float __x, float __w) in _mm_setr_ps() argument
613 return (__m128){ __z, __y, __x, __w }; in _mm_setr_ps()
/external/libcxx/include/
Dcomplex260 template<class _Tp> complex<_Tp> operator*(const complex<_Tp>& __z, const complex<_Tp>& __w);
587 operator*(const complex<_Tp>& __z, const complex<_Tp>& __w)
589 _Tp __a = __z.real();
590 _Tp __b = __z.imag();
666 operator/(const complex<_Tp>& __z, const complex<_Tp>& __w)
669 _Tp __a = __z.real();
670 _Tp __b = __z.imag();
1236 complex<_Tp> __z = log(__x + sqrt(pow(__x, _Tp(2)) + _Tp(1)));
1237 return complex<_Tp>(copysign(__z.real(), __x.real()), copysign(__z.imag(), __x.imag()));
1270 complex<_Tp> __z = log(__x + sqrt(pow(__x, _Tp(2)) - _Tp(1)));
[all …]
D__tree311 // Precondition: __root != nullptr && __z != nullptr.
313 // __z == __root or == a direct or indirect child of __root.
314 // Effects: unlinks __z from the tree rooted at __root, rebalancing as needed.
316 // nor any of its children refer to __z. end_node->__left_
320 __tree_remove(_NodePtr __root, _NodePtr __z) _NOEXCEPT
322 // __z will be removed from the tree. Client still needs to destruct/deallocate it
323 // __y is either __z, or if __z has two children, __tree_next(__z).
326 _NodePtr __y = (__z->__left_ == nullptr || __z->__right_ == nullptr) ?
327 __z : __tree_next(__z);
350 // If we didn't remove __z, do so now by splicing in __y for __z,
[all …]
Drandom1890 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2130 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2380 result_type __z = __x_[__i_] ^ (__rshift<__u>(__x_[__i_]) & __d);
2382 __z ^= __lshift<__s>(__z) & __b;
2383 __z ^= __lshift<__t>(__z) & __c;
2384 return __z ^ __rshift<__l>(__z);
2587 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
2876 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
3087 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
3316 void discard(unsigned long long __z) {for (; __z; --__z) operator()();}
[all …]
Dmemory3259 const uint32_t __z = __len + (static_cast<uint32_t>(__c) << 2);
3260 return __shift_mix(__y * __k2 ^ __z * __k3) * __k2;
3277 _Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b) {
3279 __b = __rotate(__b + __a + __z, 21);
3284 return pair<_Size, _Size>(__a + __z, __b + __c);
3300 _Size __z = __loadword<_Size>(__s + 24);
3303 _Size __b = __rotate(__a + __z, 52);
3308 _Size __vf = __a + __z;
3311 __z += __loadword<_Size>(__s + __len - 8);
3312 __b = __rotate(__a + __z, 52);
[all …]
Dalgorithm3602 __sort3(_ForwardIterator __x, _ForwardIterator __y, _ForwardIterator __z, _Compare __c)
3607 if (!__c(*__z, *__y)) // if y <= z
3610 swap(*__y, *__z); // x <= z && y < z
3619 if (__c(*__z, *__y)) // x > y, if y > z
3621 swap(*__x, *__z); // x < y && y < z
3627 if (__c(*__z, *__y)) // if y > z
3629 swap(*__y, *__z); // x <= y && y < z
Ddeque344 difference_type __z = __block_size - 1 - __n;
345 __m_iter_ -= __z / __block_size;
346 __ptr_ = *__m_iter_ + (__block_size - 1 - __z % __block_size);
Dlocale3274 char_type __z = __ct.widen('0');
3277 if (*__w != __z)
3414 char_type __z = __f > 0 ? __ct.widen('0') : char_type();
3416 *__me++ = __z;