/external/tensorflow/tensorflow/python/kernel_tests/ |
D | nth_element_op_test.py | 38 values_op = nn_ops.nth_element(inputs_op, n, reverse=reverse) 119 nn_ops.nth_element(5, 0) 126 nn_ops.nth_element(v, 0).eval(feed_dict={v: 5.0}) 132 nn_ops.nth_element([5], -1) 135 nn_ops.nth_element([5, 6, 3], [1]) 142 values = nn_ops.nth_element(inputs, n) 151 nn_ops.nth_element(inputs, 2) 158 values = nn_ops.nth_element(inputs, n) 166 values = nn_ops.nth_element(inputs, 3)
|
/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/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/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/tensorflow/tensorflow/contrib/nn/ |
D | __init__.py | 38 from tensorflow.python.ops.nn_ops import nth_element
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/ |
D | nada.cc | 131 std::nth_element(array_copy.begin(), array_copy.begin() + size / 2, in MedianFilter() 138 std::nth_element(array_copy.begin(), array_copy.begin() + (size - 1) / 2, in MedianFilter()
|
/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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/ |
D | xray-account.cpp | 243 std::nth_element(Timings.begin(), Timings.begin() + MedianOff, Timings.end()); in getStats() 247 std::nth_element(Timings.begin(), Timings.begin() + Pct90Off, Timings.end()); in getStats() 251 std::nth_element(Timings.begin(), Timings.begin() + Pct99Off, Timings.end()); in getStats()
|
D | xray-graph.cpp | 258 std::nth_element(begin, begin + MedianOff, end); in getStats() 261 std::nth_element(begin, begin + Pct90Off, end); in getStats() 264 std::nth_element(begin, begin + Pct99Off, end); in getStats()
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | robust_stats.cc | 42 std::nth_element(values.begin(), middle, values.end()); in Median()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | nth_element_op.cc | 108 std::nth_element(buf.begin(), buf.begin() + n, buf.end()); in operator ()()
|
/external/deqp/modules/glshared/ |
D | glsCalibration.cpp | 52 std::nth_element(data.begin(), mid, data.end()); in destructiveMedian()
|
D | glsStateChangePerfTestCases.cpp | 204 std::nth_element(values.begin(), values.begin() + n, values.end()); in findMedian()
|
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
D | nonlinear_beamformer.cc | 560 std::nth_element(new_mask_ + low_mean_start_bin_, new_mask_ + quantile, in EstimateTargetPresence()
|
/external/tensorflow/tensorflow/core/graph/ |
D | costmodel.cc | 42 std::nth_element(non_zero.begin(), non_zero.begin() + sz / 2, in SuppressInfrequent()
|
/external/tensorflow/tensorflow/python/ops/ |
D | nn_ops.py | 4205 def nth_element(input, n, reverse=False, name=None): # pylint: disable=redefined-builtin function 4230 return gen_nn_ops.nth_element(input, n, reverse=reverse, name=name)
|
/external/libcxx/include/ |
D | algorithm | 380 nth_element(RandomAccessIterator first, RandomAccessIterator nth, RandomAccessIterator last); 384 …nth_element(RandomAccessIterator first, RandomAccessIterator nth, RandomAccessIterator last, Compa… 5082 // nth_element 5274 nth_element(_RandomAccessIterator __first, _RandomAccessIterator __nth, _RandomAccessIterator __las… 5289 nth_element(_RandomAccessIterator __first, _RandomAccessIterator __nth, _RandomAccessIterator __las… 5291 …_VSTD::nth_element(__first, __nth, __last, __less<typename iterator_traits<_RandomAccessIterator>:…
|
/external/protobuf/src/google/protobuf/ |
D | map_test.cc | 301 std::nth_element(v.begin(), v.begin() + v.size() / 2, v.end()); in median()
|