/external/libcxx/include/ |
D | random | 3639 generate_canonical(_URNG& __g) 3651 _RealType _Sp = __g() - _URNG::min(); 3653 _Sp += (__g() - _URNG::min()) * __base; 3741 result_type operator()(_URNG& __g) 3742 {return (*this)(__g, __p_);} 3743 …template<class _URNG> _LIBCPP_INLINE_VISIBILITY result_type operator()(_URNG& __g, const param_typ… 3775 uniform_real_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p) 3778 * _VSTD::generate_canonical<_RealType, numeric_limits<_RealType>::digits>(__g) 3857 result_type operator()(_URNG& __g) 3858 {return (*this)(__g, __p_);} [all …]
|
D | locale | 369 void __check_grouping(const string& __grouping, unsigned* __g, unsigned* __g_end, 382 const string& __grouping, unsigned* __g, 388 unsigned* __g, unsigned*& __g_end, _CharT* __atoms); 407 unsigned* __g, unsigned*& __g_end, const _CharT* __atoms); 457 unsigned* __g, unsigned*& __g_end, _CharT* __atoms) 461 unsigned* __g, unsigned*& __g_end, const _CharT* __atoms) 473 if (__g_end-__g < __num_get_buf_sz) 510 unsigned* __g, unsigned*& __g_end, unsigned& __dc, _CharT* __atoms) 518 if (__grouping.size() != 0 && __g_end-__g < __num_get_buf_sz) 526 if (__g_end-__g < __num_get_buf_sz) [all …]
|
D | algorithm | 2327 const difference_type __g = _VSTD::__algo_gcd(__m1, __m2); 2328 for (_RandomAccessIterator __p = __first + __g; __p != __first;) 2902 template<class _URNG> result_type operator()(_URNG& __g) 2903 {return (*this)(__g, __p_);} 2904 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p); 2927 uniform_int_distribution<_IntType>::operator()(_URNG& __g, const param_type& __p) 2938 return static_cast<result_type>(_Eng(__g, _Dt)()); 2942 _Eng __e(__g, __w); 2992 __rs_default __g = __rs_get(); 2995 difference_type __i = __uid(__g, _Pp(0, __d)); [all …]
|
D | __locale | 313 size_t __g = __h & __mask; 314 __h ^= __g | (__g >> __sr);
|
/external/llvm-project/libcxx/include/ |
D | random | 3668 generate_canonical(_URNG& __g) 3680 _RealType _Sp = __g() - _URNG::min(); 3682 _Sp += (__g() - _URNG::min()) * __base; 3772 result_type operator()(_URNG& __g) 3773 {return (*this)(__g, __p_);} 3774 …template<class _URNG> _LIBCPP_INLINE_VISIBILITY result_type operator()(_URNG& __g, const param_typ… 3806 uniform_real_distribution<_RealType>::operator()(_URNG& __g, const param_type& __p) 3809 * _VSTD::generate_canonical<_RealType, numeric_limits<_RealType>::digits>(__g) 3890 result_type operator()(_URNG& __g) 3891 {return (*this)(__g, __p_);} [all …]
|
D | locale | 364 void __check_grouping(const string& __grouping, unsigned* __g, unsigned* __g_end, 377 const string& __grouping, unsigned* __g, 383 unsigned* __g, unsigned*& __g_end, _CharT* __atoms); 402 unsigned* __g, unsigned*& __g_end, const _CharT* __atoms); 452 unsigned* __g, unsigned*& __g_end, _CharT* __atoms) 456 unsigned* __g, unsigned*& __g_end, const _CharT* __atoms) 468 if (__g_end-__g < __num_get_buf_sz) 505 unsigned* __g, unsigned*& __g_end, unsigned& __dc, _CharT* __atoms) 513 if (__grouping.size() != 0 && __g_end-__g < __num_get_buf_sz) 521 if (__g_end-__g < __num_get_buf_sz) [all …]
|
D | algorithm | 2445 const difference_type __g = _VSTD::__algo_gcd(__m1, __m2); 2446 for (_RandomAccessIterator __p = __first + __g; __p != __first;) 3039 template<class _URNG> result_type operator()(_URNG& __g) 3040 {return (*this)(__g, __p_);} 3041 template<class _URNG> result_type operator()(_URNG& __g, const param_type& __p); 3064 uniform_int_distribution<_IntType>::operator()(_URNG& __g, const param_type& __p) 3075 return static_cast<result_type>(_Eng(__g, _Dt)()); 3079 _Eng __e(__g, __w); 3129 __rs_default __g = __rs_get(); 3132 difference_type __i = __uid(__g, _Pp(0, __d)); [all …]
|
D | __locale | 334 size_t __g = __h & __mask; 335 __h ^= __g | (__g >> __sr);
|
D | regex | 813 syntax_option_type __get_grammar(syntax_option_type __g) 816 return static_cast<syntax_option_type>(__g & 0x3F0); 818 return static_cast<syntax_option_type>(__g & 0x1F0);
|
/external/llvm-project/pstl/include/pstl/internal/ |
D | algorithm_impl.h | 2483 __brick_generate(_RandomAccessIterator __first, _RandomAccessIterator __last, _Generator __g, in __brick_generate() argument 2486 __unseq_backend::__simd_generate_n(__first, __last - __first, __g); in __brick_generate() 2491 __brick_generate(_ForwardIterator __first, _ForwardIterator __last, _Generator __g, in __brick_generate() argument 2494 std::generate(__first, __last, __g); in __brick_generate() 2499 …ern_generate(_ExecutionPolicy&&, _ForwardIterator __first, _ForwardIterator __last, _Generator __g, in __pattern_generate() argument 2502 __internal::__brick_generate(__first, __last, __g, __is_vector); in __pattern_generate() 2507 …erate(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Generator __g, in __pattern_generate() argument 2512 … [__g, __is_vector](_ForwardIterator __begin, _ForwardIterator __end) { in __pattern_generate() 2513 … __internal::__brick_generate(__begin, __end, __g, __is_vector); in __pattern_generate() 2521 __brick_generate_n(OutputIterator __first, Size __count, _Generator __g, /* is_vector = */ std::tru… in __brick_generate_n() argument [all …]
|
D | unseq_backend_simd.h | 371 __simd_generate_n(_Index __first, _DifferenceType __size, _Generator __g) noexcept in __simd_generate_n() argument 376 __first[__i] = __g(); in __simd_generate_n()
|
D | glue_algorithm_impl.h | 438 …erate(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Generator __g) in generate() argument 441 std::forward<_ExecutionPolicy>(__exec), __first, __last, __g, in generate() 448 generate_n(_ExecutionPolicy&& __exec, _ForwardIterator __first, _Size __count, _Generator __g) in generate_n() argument 454 std::forward<_ExecutionPolicy>(__exec), __first, __count, __g, in generate_n()
|
D | glue_algorithm_defs.h | 204 …rate(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Generator __g); 208 generate_n(_ExecutionPolicy&& __exec, _ForwardIterator __first, _Size count, _Generator __g);
|
/external/llvm-project/clang/lib/Headers/ |
D | avxintrin.h | 3661 float __e, float __f, float __g, float __h) in _mm256_set_ps() argument 3663 return __extension__ (__m256){ __h, __g, __f, __e, __d, __c, __b, __a }; in _mm256_set_ps() 3928 float __e, float __f, float __g, float __h) in _mm256_setr_ps() argument 3930 return _mm256_set_ps(__h, __g, __f, __e, __d, __c, __b, __a); in _mm256_setr_ps()
|
/external/clang/lib/Headers/ |
D | avxintrin.h | 2544 float __e, float __f, float __g, float __h) in _mm256_set_ps() argument 2546 return (__m256){ __h, __g, __f, __e, __d, __c, __b, __a }; in _mm256_set_ps() 2599 float __e, float __f, float __g, float __h) in _mm256_setr_ps() argument 2601 return (__m256){ __a, __b, __c, __d, __e, __f, __g, __h }; in _mm256_setr_ps()
|
/external/libcxx/include/experimental/ |
D | simd | 1389 void __generator_init(_Generator&& __g, std::index_sequence<__indicies...>) { 1391 __g(std::integral_constant<size_t, __indicies>()), 1423 explicit simd(_Generator&& __g) { 1424 __generator_init(std::forward<_Generator>(__g),
|
/external/llvm-project/libcxx/include/experimental/ |
D | simd | 1391 void __generator_init(_Generator&& __g, std::index_sequence<__indicies...>) { 1393 __g(std::integral_constant<size_t, __indicies>()), 1425 explicit simd(_Generator&& __g) { 1426 __generator_init(std::forward<_Generator>(__g),
|
/external/llvm-project/libcxx/src/ |
D | locale.cpp | 4565 __check_grouping(const string& __grouping, unsigned* __g, unsigned* __g_end, in __check_grouping() argument 4570 if (__grouping.size() != 0 && __g_end - __g > 1) in __check_grouping() 4572 reverse(__g, __g_end); in __check_grouping() 4575 for (unsigned* __r = __g; __r < __g_end-1; ++__r) in __check_grouping()
|
/external/libcxx/src/ |
D | locale.cpp | 4390 __check_grouping(const string& __grouping, unsigned* __g, unsigned* __g_end, in __check_grouping() argument 4395 reverse(__g, __g_end); in __check_grouping() 4398 for (unsigned* __r = __g; __r < __g_end-1; ++__r) in __check_grouping()
|