├── .arcconfig ├── .clang-format ├── CMakeLists.txt ├── CREDITS.txt ├── LICENSE.txt ├── README.md ├── cmake └── ParallelSTLConfig.cmake.in ├── docs └── ReleaseNotes.rst ├── include ├── __pstl_algorithm ├── __pstl_config_site.in ├── __pstl_execution ├── __pstl_memory ├── __pstl_numeric └── pstl │ └── internal │ ├── algorithm_fwd.h │ ├── algorithm_impl.h │ ├── execution_defs.h │ ├── execution_impl.h │ ├── glue_algorithm_defs.h │ ├── glue_algorithm_impl.h │ ├── glue_execution_defs.h │ ├── glue_memory_defs.h │ ├── glue_memory_impl.h │ ├── glue_numeric_defs.h │ ├── glue_numeric_impl.h │ ├── memory_impl.h │ ├── numeric_fwd.h │ ├── numeric_impl.h │ ├── parallel_backend.h │ ├── parallel_backend_serial.h │ ├── parallel_backend_tbb.h │ ├── parallel_backend_utils.h │ ├── parallel_impl.h │ ├── pstl_config.h │ ├── unseq_backend_simd.h │ └── utils.h └── test ├── CMakeLists.txt ├── pstl ├── header_inclusion_order_algorithm_0.pass.cpp ├── header_inclusion_order_algorithm_1.pass.cpp ├── header_inclusion_order_memory_0.pass.cpp ├── header_inclusion_order_memory_1.pass.cpp ├── header_inclusion_order_numeric_0.pass.cpp ├── header_inclusion_order_numeric_1.pass.cpp └── version.pass.cpp ├── std ├── algorithms │ ├── alg.merge │ │ ├── inplace_merge.pass.cpp │ │ └── merge.pass.cpp │ ├── alg.modifying.operations │ │ ├── alg.copy │ │ │ └── copy_if.pass.cpp │ │ ├── alg.partitions │ │ │ ├── is_partitioned.pass.cpp │ │ │ ├── partition.pass.cpp │ │ │ └── partition_copy.pass.cpp │ │ ├── alg.reverse │ │ │ ├── reverse.pass.cpp │ │ │ └── reverse_copy.pass.cpp │ │ ├── copy_move.pass.cpp │ │ ├── fill.pass.cpp │ │ ├── generate.pass.cpp │ │ ├── remove.pass.cpp │ │ ├── remove_copy.pass.cpp │ │ ├── replace.pass.cpp │ │ ├── replace_copy.pass.cpp │ │ ├── rotate.pass.cpp │ │ ├── rotate_copy.pass.cpp │ │ ├── swap_ranges.pass.cpp │ │ ├── transform_binary.pass.cpp │ │ ├── transform_unary.pass.cpp │ │ ├── unique.pass.cpp │ │ └── unique_copy_equal.pass.cpp │ ├── alg.nonmodifying │ │ ├── adjacent_find.pass.cpp │ │ ├── all_of.pass.cpp │ │ ├── any_of.pass.cpp │ │ ├── count.pass.cpp │ │ ├── equal.pass.cpp │ │ ├── find.pass.cpp │ │ ├── find_end.pass.cpp │ │ ├── find_first_of.pass.cpp │ │ ├── find_if.pass.cpp │ │ ├── for_each.pass.cpp │ │ ├── mismatch.pass.cpp │ │ ├── none_of.pass.cpp │ │ ├── nth_element.pass.cpp │ │ └── search_n.pass.cpp │ └── alg.sorting │ │ ├── alg.heap.operations │ │ └── is_heap.pass.cpp │ │ ├── alg.lex.comparison │ │ └── lexicographical_compare.pass.cpp │ │ ├── alg.min.max │ │ └── minmax_element.pass.cpp │ │ ├── alg.set.operations │ │ ├── includes.pass.cpp │ │ └── set.pass.cpp │ │ ├── is_sorted.pass.cpp │ │ ├── partial_sort.pass.cpp │ │ ├── partial_sort_copy.pass.cpp │ │ └── sort.pass.cpp ├── lit.local.cfg ├── numerics │ └── numeric.ops │ │ ├── adjacent_difference.pass.cpp │ │ ├── reduce.pass.cpp │ │ ├── scan.pass.cpp │ │ ├── transform_reduce.pass.cpp │ │ └── transform_scan.pass.cpp └── utilities │ └── memory │ └── specialized.algorithms │ ├── uninitialized_construct.pass.cpp │ ├── uninitialized_copy_move.pass.cpp │ └── uninitialized_fill_destroy.pass.cpp └── support ├── pstl_test_config.h ├── stdlib ├── algorithm ├── execution ├── memory └── numeric └── utils.h /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/.arcconfig -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/.clang-format -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/README.md -------------------------------------------------------------------------------- /cmake/ParallelSTLConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/cmake/ParallelSTLConfig.cmake.in -------------------------------------------------------------------------------- /docs/ReleaseNotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/docs/ReleaseNotes.rst -------------------------------------------------------------------------------- /include/__pstl_algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/__pstl_algorithm -------------------------------------------------------------------------------- /include/__pstl_config_site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/__pstl_config_site.in -------------------------------------------------------------------------------- /include/__pstl_execution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/__pstl_execution -------------------------------------------------------------------------------- /include/__pstl_memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/__pstl_memory -------------------------------------------------------------------------------- /include/__pstl_numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/__pstl_numeric -------------------------------------------------------------------------------- /include/pstl/internal/algorithm_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/algorithm_fwd.h -------------------------------------------------------------------------------- /include/pstl/internal/algorithm_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/algorithm_impl.h -------------------------------------------------------------------------------- /include/pstl/internal/execution_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/execution_defs.h -------------------------------------------------------------------------------- /include/pstl/internal/execution_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/execution_impl.h -------------------------------------------------------------------------------- /include/pstl/internal/glue_algorithm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/glue_algorithm_defs.h -------------------------------------------------------------------------------- /include/pstl/internal/glue_algorithm_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/glue_algorithm_impl.h -------------------------------------------------------------------------------- /include/pstl/internal/glue_execution_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/glue_execution_defs.h -------------------------------------------------------------------------------- /include/pstl/internal/glue_memory_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/glue_memory_defs.h -------------------------------------------------------------------------------- /include/pstl/internal/glue_memory_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/glue_memory_impl.h -------------------------------------------------------------------------------- /include/pstl/internal/glue_numeric_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/glue_numeric_defs.h -------------------------------------------------------------------------------- /include/pstl/internal/glue_numeric_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/glue_numeric_impl.h -------------------------------------------------------------------------------- /include/pstl/internal/memory_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/memory_impl.h -------------------------------------------------------------------------------- /include/pstl/internal/numeric_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/numeric_fwd.h -------------------------------------------------------------------------------- /include/pstl/internal/numeric_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/numeric_impl.h -------------------------------------------------------------------------------- /include/pstl/internal/parallel_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/parallel_backend.h -------------------------------------------------------------------------------- /include/pstl/internal/parallel_backend_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/parallel_backend_serial.h -------------------------------------------------------------------------------- /include/pstl/internal/parallel_backend_tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/parallel_backend_tbb.h -------------------------------------------------------------------------------- /include/pstl/internal/parallel_backend_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/parallel_backend_utils.h -------------------------------------------------------------------------------- /include/pstl/internal/parallel_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/parallel_impl.h -------------------------------------------------------------------------------- /include/pstl/internal/pstl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/pstl_config.h -------------------------------------------------------------------------------- /include/pstl/internal/unseq_backend_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/unseq_backend_simd.h -------------------------------------------------------------------------------- /include/pstl/internal/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/include/pstl/internal/utils.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/pstl/header_inclusion_order_algorithm_0.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/pstl/header_inclusion_order_algorithm_0.pass.cpp -------------------------------------------------------------------------------- /test/pstl/header_inclusion_order_algorithm_1.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/pstl/header_inclusion_order_algorithm_1.pass.cpp -------------------------------------------------------------------------------- /test/pstl/header_inclusion_order_memory_0.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/pstl/header_inclusion_order_memory_0.pass.cpp -------------------------------------------------------------------------------- /test/pstl/header_inclusion_order_memory_1.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/pstl/header_inclusion_order_memory_1.pass.cpp -------------------------------------------------------------------------------- /test/pstl/header_inclusion_order_numeric_0.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/pstl/header_inclusion_order_numeric_0.pass.cpp -------------------------------------------------------------------------------- /test/pstl/header_inclusion_order_numeric_1.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/pstl/header_inclusion_order_numeric_1.pass.cpp -------------------------------------------------------------------------------- /test/pstl/version.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/pstl/version.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.merge/inplace_merge.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.merge/inplace_merge.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.merge/merge.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.merge/merge.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/alg.partitions/partition.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/alg.partitions/partition.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/alg.reverse/reverse.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/alg.reverse/reverse.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/alg.reverse/reverse_copy.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/alg.reverse/reverse_copy.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/copy_move.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/copy_move.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/fill.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/fill.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/generate.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/generate.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/remove.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/remove.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/remove_copy.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/remove_copy.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/replace.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/replace.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/replace_copy.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/replace_copy.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/rotate.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/rotate.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/rotate_copy.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/rotate_copy.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/swap_ranges.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/swap_ranges.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/transform_binary.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/transform_binary.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/transform_unary.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/transform_unary.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/unique.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/unique.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.modifying.operations/unique_copy_equal.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.modifying.operations/unique_copy_equal.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/adjacent_find.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/adjacent_find.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/all_of.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/all_of.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/any_of.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/any_of.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/count.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/count.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/equal.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/equal.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/find.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/find.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/find_end.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/find_end.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/find_first_of.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/find_first_of.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/find_if.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/find_if.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/for_each.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/for_each.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/mismatch.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/mismatch.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/none_of.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/none_of.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/nth_element.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/nth_element.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.nonmodifying/search_n.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.nonmodifying/search_n.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.sorting/alg.heap.operations/is_heap.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.sorting/alg.heap.operations/is_heap.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.sorting/alg.min.max/minmax_element.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.sorting/alg.min.max/minmax_element.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.sorting/alg.set.operations/includes.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.sorting/alg.set.operations/includes.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.sorting/alg.set.operations/set.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.sorting/alg.set.operations/set.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.sorting/is_sorted.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.sorting/is_sorted.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.sorting/partial_sort.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.sorting/partial_sort.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.sorting/partial_sort_copy.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.sorting/partial_sort_copy.pass.cpp -------------------------------------------------------------------------------- /test/std/algorithms/alg.sorting/sort.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/algorithms/alg.sorting/sort.pass.cpp -------------------------------------------------------------------------------- /test/std/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/lit.local.cfg -------------------------------------------------------------------------------- /test/std/numerics/numeric.ops/adjacent_difference.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/numerics/numeric.ops/adjacent_difference.pass.cpp -------------------------------------------------------------------------------- /test/std/numerics/numeric.ops/reduce.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/numerics/numeric.ops/reduce.pass.cpp -------------------------------------------------------------------------------- /test/std/numerics/numeric.ops/scan.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/numerics/numeric.ops/scan.pass.cpp -------------------------------------------------------------------------------- /test/std/numerics/numeric.ops/transform_reduce.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/numerics/numeric.ops/transform_reduce.pass.cpp -------------------------------------------------------------------------------- /test/std/numerics/numeric.ops/transform_scan.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/numerics/numeric.ops/transform_scan.pass.cpp -------------------------------------------------------------------------------- /test/std/utilities/memory/specialized.algorithms/uninitialized_construct.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/utilities/memory/specialized.algorithms/uninitialized_construct.pass.cpp -------------------------------------------------------------------------------- /test/std/utilities/memory/specialized.algorithms/uninitialized_copy_move.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/utilities/memory/specialized.algorithms/uninitialized_copy_move.pass.cpp -------------------------------------------------------------------------------- /test/std/utilities/memory/specialized.algorithms/uninitialized_fill_destroy.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/std/utilities/memory/specialized.algorithms/uninitialized_fill_destroy.pass.cpp -------------------------------------------------------------------------------- /test/support/pstl_test_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/support/pstl_test_config.h -------------------------------------------------------------------------------- /test/support/stdlib/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/support/stdlib/algorithm -------------------------------------------------------------------------------- /test/support/stdlib/execution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/support/stdlib/execution -------------------------------------------------------------------------------- /test/support/stdlib/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/support/stdlib/memory -------------------------------------------------------------------------------- /test/support/stdlib/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/support/stdlib/numeric -------------------------------------------------------------------------------- /test/support/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/pstl/HEAD/test/support/utils.h --------------------------------------------------------------------------------