Searched refs:__pstl (Results 1 – 25 of 53) sorted by relevance
123
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | pstl.h | 45 …using _Implementation = __pstl::__dispatch<__pstl::__any_of, __pstl::__current_configuration, _Raw… in any_of() 46 return __pstl::__handle_exception<_Implementation>( in any_of() 58 …using _Implementation = __pstl::__dispatch<__pstl::__all_of, __pstl::__current_configuration, _Raw… in all_of() 59 return __pstl::__handle_exception<_Implementation>( in all_of() 71 …using _Implementation = __pstl::__dispatch<__pstl::__none_of, __pstl::__current_configuration, _Ra… in none_of() 72 return __pstl::__handle_exception<_Implementation>( in none_of() 89 …using _Implementation = __pstl::__dispatch<__pstl::__copy, __pstl::__current_configuration, _RawPo… in copy() 90 return __pstl::__handle_exception<_Implementation>( in copy() 108 …using _Implementation = __pstl::__dispatch<__pstl::__copy_n, __pstl::__current_configuration, _Raw… in copy_n() 109 return __pstl::__handle_exception<_Implementation>( in copy_n() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | glue_algorithm_impl.h |
|
H A D | glue_memory_impl.h |
|
H A D | glue_algorithm_defs.h |
|
H A D | glue_numeric_impl.h |
|
H A D | glue_memory_defs.h |
|
H A D | execution_defs.h |
|
H A D | glue_numeric_defs.h |
|
H A D | parallel_backend_serial.h |
|
H A D | execution_impl.h |
|
H A D | parallel_backend.h |
|
/freebsd/contrib/llvm-project/libcxx/include/__numeric/ |
H A D | pstl.h | 47 …using _Implementation = __pstl::__dispatch<__pstl::__reduce, __pstl::__current_configuration, _Raw… in reduce() 48 return __pstl::__handle_exception<_Implementation>( in reduce() 64 …using _Implementation = __pstl::__dispatch<__pstl::__reduce, __pstl::__current_configuration, _Raw… in reduce() 65 return __pstl::__handle_exception<_Implementation>( in reduce() 76 …using _Implementation = __pstl::__dispatch<__pstl::__reduce, __pstl::__current_configuration, _Raw… in reduce() 77 return __pstl::__handle_exception<_Implementation>( in reduce() 104 …__pstl::__dispatch<__pstl::__transform_reduce_binary, __pstl::__current_configuration, _RawPolicy>; in transform_reduce() 105 return __pstl::__handle_exception<_Implementation>( in transform_reduce() 132 …__pstl::__dispatch<__pstl::__transform_reduce_binary, __pstl::__current_configuration, _RawPolicy>; in transform_reduce() 133 return __pstl::__handle_exception<_Implementation>( in transform_reduce() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/omp/ |
H A D | parallel_stable_sort.h |
|
H A D | parallel_for.h |
|
H A D | parallel_merge.h |
|
H A D | parallel_invoke.h |
|
H A D | parallel_transform_reduce.h |
|
H A D | parallel_reduce.h |
|
H A D | parallel_for_each.h |
|
H A D | parallel_scan.h |
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/cpu_algos/ |
H A D | any_of.h | 30 namespace __pstl { 78 return __pstl::__parallel_or<_Backend>( in operator() 80 … using _AnyOfUnseq = __pstl::__any_of<_Backend, __remove_parallel_policy_t<_RawExecutionPolicy>>; in operator() 87 return __pstl::__simd_or(__first, __last - __first, __pred); in operator()
|
H A D | transform.h | 31 namespace __pstl { 67 …using _TransformUnseq = __pstl::__transform<_Backend, __remove_parallel_policy_t<_RawExecutionPoli… in operator() 81 return __pstl::__simd_transform( in operator() 118 … __pstl::__transform_binary<_Backend, __remove_parallel_policy_t<_RawExecutionPolicy>>; in operator() 134 return __pstl::__simd_transform( in operator()
|
H A D | for_each.h | 27 namespace __pstl { 47 …using _ForEachUnseq = __pstl::__for_each<_Backend, __remove_parallel_policy_t<_RawExecutionPolicy>… in operator() 54 __pstl::__simd_for_each(__first, __last - __first, __func); in operator()
|
H A D | fill.h | 27 namespace __pstl { 47 … using _FillUnseq = __pstl::__fill<_Backend, __remove_parallel_policy_t<_RawExecutionPolicy>>; in operator() 54 __pstl::__simd_fill_n(__first, __last - __first, __value); in operator()
|
H A D | find_if.h | 35 namespace __pstl { 108 return __pstl::__parallel_find<_Backend>( in operator() 112 … using _FindIfUnseq = __pstl::__find_if<_Backend, __remove_parallel_policy_t<_RawExecutionPolicy>>; in operator() 122 return __pstl::__simd_first<_Backend>( in operator()
|
123