HomeSort by relevance Sort by last modified time
    Searched full:__z (Results 151 - 175 of 435) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
modified_bessel_func.tcc 373 const _Tp __z = _Tp(2) * __absx * __rootx / _Tp(3);
381 __bessel_ik(_Tp(1) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu);
388 __bessel_ik(_Tp(2) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu);
400 __bessel_jn(_Tp(1) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu);
406 __bessel_jn(_Tp(2) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu);
random.tcc 352 result_type __z = _M_x[_M_p++];
353 __z ^= (__z >> __u);
354 __z ^= (__z << __s) & __b;
355 __z ^= (__z << __t) & __c;
356 __z ^= (__z >> __l);
358 return __z;
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
modified_bessel_func.tcc 374 const _Tp __z = _Tp(2) * __absx * __rootx / _Tp(3);
380 __bessel_ik(_Tp(1) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu);
387 __bessel_ik(_Tp(2) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu);
399 __bessel_jn(_Tp(1) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu);
405 __bessel_jn(_Tp(2) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu);
random.tcc 352 result_type __z = _M_x[_M_p++];
353 __z ^= (__z >> __u);
354 __z ^= (__z << __s) & __b;
355 __z ^= (__z << __t) & __c;
356 __z ^= (__z >> __l);
358 return __z;
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
modified_bessel_func.tcc 374 const _Tp __z = _Tp(2) * __absx * __rootx / _Tp(3);
380 __bessel_ik(_Tp(1) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu);
387 __bessel_ik(_Tp(2) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu);
399 __bessel_jn(_Tp(1) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu);
405 __bessel_jn(_Tp(2) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu);
random.tcc 352 result_type __z = _M_x[_M_p++];
353 __z ^= (__z >> __u);
354 __z ^= (__z << __s) & __b;
355 __z ^= (__z << __t) & __c;
356 __z ^= (__z >> __l);
358 return __z;
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
modified_bessel_func.tcc 374 const _Tp __z = _Tp(2) * __absx * __rootx / _Tp(3);
380 __bessel_ik(_Tp(1) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu);
387 __bessel_ik(_Tp(2) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu);
399 __bessel_jn(_Tp(1) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu);
405 __bessel_jn(_Tp(2) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu);
random.tcc 352 result_type __z = _M_x[_M_p++];
353 __z ^= (__z >> __u);
354 __z ^= (__z << __s) & __b;
355 __z ^= (__z << __t) & __c;
356 __z ^= (__z >> __l);
358 return __z;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
random.tcc 352 result_type __z = _M_x[_M_p++];
353 __z ^= (__z >> __u);
354 __z ^= (__z << __s) & __b;
355 __z ^= (__z << __t) & __c;
356 __z ^= (__z >> __l);
358 return __z;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
random.tcc 352 result_type __z = _M_x[_M_p++];
353 __z ^= (__z >> __u);
354 __z ^= (__z << __s) & __b;
355 __z ^= (__z << __t) & __c;
356 __z ^= (__z >> __l);
358 return __z;
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/
cmath 1214 inline _LIBCPP_INLINE_VISIBILITY float fma(float __x, float __y, float __z) _NOEXCEPT {return fmaf(__x, __y, __z);}
1215 inline _LIBCPP_INLINE_VISIBILITY long double fma(long double __x, long double __y, long double __z) _NOEXCEPT {return fmal(__x, __y, __z);}
1226 fma(_A1 __x, _A2 __y, _A3 __z) _NOEXCEPT
1232 return fma((__result_type)__x, (__result_type)__y, (__result_type)__z);
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/debug/
_hashtable.h 326 void max_load_factor(float __z) {
327 _STLP_VERBOSE_ASSERT((__z > 0.0f), _StlMsg_INVALID_ARGUMENT)
328 _M_non_dbg_impl.max_load_factor(__z);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/include/
cmath 1214 inline _LIBCPP_INLINE_VISIBILITY float fma(float __x, float __y, float __z) _NOEXCEPT {return fmaf(__x, __y, __z);}
1215 inline _LIBCPP_INLINE_VISIBILITY long double fma(long double __x, long double __y, long double __z) _NOEXCEPT {return fmal(__x, __y, __z);}
1226 fma(_A1 __x, _A2 __y, _A3 __z) _NOEXCEPT
1232 return fma((__result_type)__x, (__result_type)__y, (__result_type)__z);
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/debug/
_hashtable.h 326 void max_load_factor(float __z) {
327 _STLP_VERBOSE_ASSERT((__z > 0.0f), _StlMsg_INVALID_ARGUMENT)
328 _M_non_dbg_impl.max_load_factor(__z);
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/debug/
_hashtable.h 326 void max_load_factor(float __z) {
327 _STLP_VERBOSE_ASSERT((__z > 0.0f), _StlMsg_INVALID_ARGUMENT)
328 _M_non_dbg_impl.max_load_factor(__z);
  /external/libcxx/include/
__tree 340 // Precondition: __root != nullptr && __z != nullptr.
342 // __z == __root or == a direct or indirect child of __root.
343 // Effects: unlinks __z from the tree rooted at __root, rebalancing as needed.
345 // nor any of its children refer to __z. end_node->__left_
349 __tree_remove(_NodePtr __root, _NodePtr __z) _NOEXCEPT
351 // __z will be removed from the tree. Client still needs to destruct/deallocate it
352 // __y is either __z, or if __z has two children, __tree_next(__z).
355 _NodePtr __y = (__z->__left_ == nullptr || __z->__right_ == nullptr)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
__tree 340 // Precondition: __root != nullptr && __z != nullptr.
342 // __z == __root or == a direct or indirect child of __root.
343 // Effects: unlinks __z from the tree rooted at __root, rebalancing as needed.
345 // nor any of its children refer to __z. end_node->__left_
349 __tree_remove(_NodePtr __root, _NodePtr __z) _NOEXCEPT
351 // __z will be removed from the tree. Client still needs to destruct/deallocate it
352 // __y is either __z, or if __z has two children, __tree_next(__z).
355 _NodePtr __y = (__z->__left_ == nullptr || __z->__right_ == nullptr)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
__tree 340 // Precondition: __root != nullptr && __z != nullptr.
342 // __z == __root or == a direct or indirect child of __root.
343 // Effects: unlinks __z from the tree rooted at __root, rebalancing as needed.
345 // nor any of its children refer to __z. end_node->__left_
349 __tree_remove(_NodePtr __root, _NodePtr __z) _NOEXCEPT
351 // __z will be removed from the tree. Client still needs to destruct/deallocate it
352 // __y is either __z, or if __z has two children, __tree_next(__z).
355 _NodePtr __y = (__z->__left_ == nullptr || __z->__right_ == nullptr)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/
__tree 327 // Precondition: __root != nullptr && __z != nullptr.
329 // __z == __root or == a direct or indirect child of __root.
330 // Effects: unlinks __z from the tree rooted at __root, rebalancing as needed.
332 // nor any of its children refer to __z. end_node->__left_
336 __tree_remove(_NodePtr __root, _NodePtr __z) _NOEXCEPT
338 // __z will be removed from the tree. Client still needs to destruct/deallocate it
339 // __y is either __z, or if __z has two children, __tree_next(__z).
342 _NodePtr __y = (__z->__left_ == nullptr || __z->__right_ == nullptr)
    [all...]
  /external/clang/unittests/Basic/
CharInfoTest.cpp 480 EXPECT_TRUE(isValidIdentifier("__z"));
482 EXPECT_TRUE(isValidIdentifier("__Z"));
  /external/clang/lib/Headers/
bmiintrin.h 212 /// \param __Z
218 _bextr_u32(unsigned int __X, unsigned int __Y, unsigned int __Z)
220 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
449 /// \param __Z
455 _bextr_u64(unsigned long long __X, unsigned int __Y, unsigned int __Z)
457 return __builtin_ia32_bextr_u64 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
bmiintrin.h 212 /// \param __Z
218 _bextr_u32(unsigned int __X, unsigned int __Y, unsigned int __Z)
220 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
449 /// \param __Z
455 _bextr_u64(unsigned long long __X, unsigned int __Y, unsigned int __Z)
457 return __builtin_ia32_bextr_u64 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
  /prebuilts/clang/host/darwin-x86/clang-3362437/lib64/clang/3.8/include/
bmiintrin.h 212 /// \param __Z
218 _bextr_u32(unsigned int __X, unsigned int __Y, unsigned int __Z)
220 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
449 /// \param __Z
455 _bextr_u64(unsigned long long __X, unsigned int __Y, unsigned int __Z)
457 return __builtin_ia32_bextr_u64 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
bmiintrin.h 212 /// \param __Z
218 _bextr_u32(unsigned int __X, unsigned int __Y, unsigned int __Z)
220 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
449 /// \param __Z
455 _bextr_u64(unsigned long long __X, unsigned int __Y, unsigned int __Z)
457 return __builtin_ia32_bextr_u64 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
  /prebuilts/clang/host/darwin-x86/clang-3957855/lib64/clang/5.0/include/
bmiintrin.h 212 /// \param __Z
218 _bextr_u32(unsigned int __X, unsigned int __Y, unsigned int __Z)
220 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
449 /// \param __Z
455 _bextr_u64(unsigned long long __X, unsigned int __Y, unsigned int __Z)
457 return __builtin_ia32_bextr_u64 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));

Completed in 618 milliseconds

1 2 3 4 5 67 8 91011>>