/external/tensorflow/tensorflow/python/kernel_tests/ |
D | nth_element_op_test.py | 40 values_op = nn_ops.nth_element(inputs_op, n, reverse=reverse) 120 nn_ops.nth_element(5, 0) 127 nn_ops.nth_element(v, 0).eval(feed_dict={v: 5}) 132 nn_ops.nth_element([5], -1) 135 nn_ops.nth_element([5, 6, 3], [1]) 141 values = nn_ops.nth_element([5], n) 149 nn_ops.nth_element(inputs, 2) 155 values = nn_ops.nth_element(inputs, n) 175 values = nn_ops.nth_element(inputs, 3) 183 values = nn_ops.nth_element(inputs, 3)
|
/external/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.nth.element/ |
D | nth_element_comp.pass.cpp | 45 std::nth_element(array, array+M, array+N, std::greater<int>()); in test_one() 47 std::nth_element(array, array+N, array+N, std::greater<int>()); // begin, end, end in test_one() 69 std::nth_element(&d, &d, &d); in main() 84 std::nth_element(v.begin(), v.begin() + v.size()/2, v.end(), indirect_less()); in main()
|
D | nth_element.pass.cpp | 34 std::nth_element(array, array+M, array+N); in test_one() 36 std::nth_element(array, array+N, array+N); // begin, end, end in test_one() 58 std::nth_element(&d, &d, &d); in main()
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.nth.element/ |
D | nth_element_comp.pass.cpp | 46 std::nth_element(array, array+M, array+N, std::greater<int>()); in test_one() 48 std::nth_element(array, array+N, array+N, std::greater<int>()); // begin, end, end in test_one() 70 std::nth_element(&d, &d, &d); in main() 85 std::nth_element(v.begin(), v.begin() + v.size()/2, v.end(), indirect_less()); in main()
|
D | nth_element.pass.cpp | 33 std::nth_element(array, array+M, array+N); in test_one() 35 std::nth_element(array, array+N, array+N); // begin, end, end in test_one() 57 std::nth_element(&d, &d, &d); in main()
|
/external/llvm-project/clang/test/Analysis/ |
D | ptr-sort.cpp | 15 std::nth_element(V1.begin(), V1.begin() + 1, V1.end()); // no-warning in PointerSorting() 24 …std::nth_element(V2.begin(), V2.begin() + 1, V2.end()); // expected-warning {{Sorting pointer-like… in PointerSorting()
|
/external/llvm-project/pstl/test/std/algorithms/alg.nonmodifying/ |
D | nth_element.pass.cpp | 103 std::nth_element(first1, mid1, last1, comp); in operator ()() 104 std::nth_element(exec, first2, mid2, last2, comp); in operator ()() 154 invoke_if(exec, [&]() { nth_element(exec, iter, iter, iter, non_const(std::less<T>())); }); in operator ()()
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | temp_arg_nontype_cxx1z.cpp | 300 template<size_t n, class List> struct nth_element; 301 template<size_t n, class List> constexpr auto nth_element_v = nth_element<n, List>::value; 304 struct nth_element<n, value_list<v0, vs...>> struct 306 static constexpr auto value = nth_element<n - 1, value_list<vs...>>::value; argument 309 struct nth_element<0, value_list<v0, vs...>> struct
|
/external/libcxx/fuzzing/ |
D | RoutineNames.txt | 8 nth_element
|
D | fuzzing.h | 30 int nth_element (const uint8_t *data, size_t size);
|
D | fuzz_test.cpp | 116 {"nth_element", fuzzing::nth_element},
|
D | fuzzing.cpp | 266 int nth_element (const uint8_t *data, size_t size) in nth_element() function 272 std::nth_element(working.begin(), partition_iter, working.end()); in nth_element()
|
/external/libcxx/test/libcxx/fuzzing/ |
D | nth_element.cpp | 35 assert(0 == fuzzing::nth_element(data, size)); in main()
|
/external/llvm-project/libcxx/utils/google-benchmark/src/ |
D | statistics.cc | 42 std::nth_element(copy.begin(), center, copy.end()); in StatisticsMedian() 50 std::nth_element(copy.begin(), center2, copy.end()); in StatisticsMedian()
|
/external/llvm-project/llvm/utils/benchmark/src/ |
D | statistics.cc | 42 std::nth_element(copy.begin(), center, copy.end()); in StatisticsMedian() 50 std::nth_element(copy.begin(), center2, copy.end()); in StatisticsMedian()
|
/external/libcxx/utils/google-benchmark/src/ |
D | statistics.cc | 42 std::nth_element(copy.begin(), center, copy.end()); in StatisticsMedian() 50 std::nth_element(copy.begin(), center2, copy.end()); in StatisticsMedian()
|
/external/google-benchmark/src/ |
D | statistics.cc | 42 std::nth_element(copy.begin(), center, copy.end()); in StatisticsMedian() 50 std::nth_element(copy.begin(), center2, copy.end()); in StatisticsMedian()
|
/external/llvm-project/libcxx/test/libcxx/fuzzing/ |
D | nth_element.pass.cpp | 24 std::nth_element(working.begin(), partition_iter, working.end()); in LLVMFuzzerTestOneInput()
|
/external/eigen/unsupported/Eigen/src/BVH/ |
D | KdBVH.h | 193 std::nth_element(objCenters.begin() + from, objCenters.begin() + mid, 203 nth_element(objCenters.begin() + from, objCenters.begin() + mid,
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | robust_stats.cc | 42 std::nth_element(values.begin(), middle, values.end()); in Median()
|
/external/llvm-project/llvm/tools/llvm-xray/ |
D | xray-account.cpp | 282 std::nth_element(Timings.begin(), Timings.begin() + MedianOff, Timings.end()); in getStats() 286 std::nth_element(Timings.begin(), Timings.begin() + (uint64_t)Pct90Off, in getStats() 291 std::nth_element(Timings.begin(), Timings.begin() + (uint64_t)Pct99Off, in getStats()
|
D | xray-graph.cpp | 278 std::nth_element(begin, begin + MedianOff, end); in getStats() 281 std::nth_element(begin, begin + Pct90Off, end); in getStats() 284 std::nth_element(begin, begin + Pct99Off, end); in getStats()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | nth_element_op.cc | 109 std::nth_element(buf.begin(), buf.begin() + n, buf.end()); in operator ()()
|
/external/llvm-project/pstl/ |
D | README.md | 23 …orithms do not allow efficient SIMD execution: `includes`, `inplace_merge`, `merge`, `nth_element`,
|
/external/catch2/include/internal/benchmark/detail/ |
D | catch_stats.cpp | 121 std::nth_element(first, first + j, last); in weighted_average_quantile()
|