/external/libcxx/test/libcxx/fuzzing/ |
nth_element.cpp | 2 //===----------------------- nth_element.cpp ------------------------------===// 35 assert(0 == fuzzing::nth_element(data, size));
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.nth.element/ |
nth_element_comp.pass.cpp | 16 // nth_element(Iter first, Iter nth, Iter last, Compare comp); 46 std::nth_element(array, array+M, array+N, std::greater<int>()); 48 std::nth_element(array, array+N, array+N, std::greater<int>()); // begin, end, end 70 std::nth_element(&d, &d, &d); 85 std::nth_element(v.begin(), v.begin() + v.size()/2, v.end(), indirect_less());
|
nth_element.pass.cpp | 16 // nth_element(Iter first, Iter nth, Iter last); 33 std::nth_element(array, array+M, array+N); 35 std::nth_element(array, array+N, array+N); // begin, end, end 57 std::nth_element(&d, &d, &d);
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
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/tensorflow/tensorflow/contrib/nn/ |
__init__.py | 22 @@nth_element 38 from tensorflow.python.ops.nn_ops import nth_element
|
/external/libcxx/fuzzing/ |
fuzzing.h | 30 int nth_element (const uint8_t *data, size_t size);
|
fuzz_test.cpp | 116 {"nth_element", fuzzing::nth_element},
|
fuzzing.cpp | 264 // == nth_element == 266 int nth_element (const uint8_t *data, size_t size) function in namespace:fuzzing 272 std::nth_element(working.begin(), partition_iter, working.end()); 274 // nth may be the end iterator, in this case nth_element has no effect.
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
robust_stats.cc | 42 std::nth_element(values.begin(), middle, values.end()); 48 // nth_element.
|
/external/tensorflow/tensorflow/core/kernels/ |
nth_element_op.cc | 61 // std::nth_element only support the nth-smallest selection. 99 // std::nth_element would rearrange the array, so we need a new buffer. 108 std::nth_element(buf.begin(), buf.begin() + n, buf.end()); 116 // The average time complexity of partition-based nth_element (BFPRT) is
|
/external/eigen/unsupported/Eigen/src/BVH/ |
KdBVH.h | 193 std::nth_element(objCenters.begin() + from, objCenters.begin() + mid, 203 nth_element(objCenters.begin() + from, objCenters.begin() + mid,
|
/external/google-benchmark/src/ |
statistics.cc | 42 std::nth_element(copy.begin(), center, copy.end()); 50 std::nth_element(copy.begin(), center2, copy.end());
|
/external/libcxx/utils/google-benchmark/src/ |
statistics.cc | 42 std::nth_element(copy.begin(), center, copy.end()); 50 std::nth_element(copy.begin(), center2, copy.end());
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/ |
nada.cc | 131 std::nth_element(array_copy.begin(), array_copy.begin() + size / 2, 138 std::nth_element(array_copy.begin(), array_copy.begin() + (size - 1) / 2,
|
/frameworks/av/media/codec2/sfplugin/ |
PipelineWatcher.cpp | 149 std::nth_element(durations.begin(), durations.end(), durations.begin() + n,
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/ |
xray-account.cpp | 243 std::nth_element(Timings.begin(), Timings.begin() + MedianOff, Timings.end()); 247 std::nth_element(Timings.begin(), Timings.begin() + Pct90Off, Timings.end()); 251 std::nth_element(Timings.begin(), Timings.begin() + Pct99Off, Timings.end());
|
xray-graph.cpp | 258 std::nth_element(begin, begin + MedianOff, end); 261 std::nth_element(begin, begin + Pct90Off, end); 264 std::nth_element(begin, begin + Pct99Off, end);
|
/external/deqp/modules/glshared/ |
glsCalibration.cpp | 52 std::nth_element(data.begin(), mid, data.end());
|
glsStateChangePerfTestCases.cpp | 204 std::nth_element(values.begin(), values.begin() + n, values.end());
|
/frameworks/av/services/audioflinger/ |
NBAIO_Tee.cpp | 308 std::nth_element(files.begin(), files.begin() + toRemove - 1, files.end());
|
/external/tensorflow/tensorflow/core/graph/ |
costmodel.cc | 42 std::nth_element(non_zero.begin(), non_zero.begin() + sz / 2,
|
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
nonlinear_beamformer.cc | 560 std::nth_element(new_mask_ + low_mean_start_bin_, new_mask_ + quantile,
|
/external/tensorflow/tensorflow/python/ops/ |
nn_ops.py | 4205 def nth_element(input, n, reverse=False, name=None): # pylint: disable=redefined-builtin function [all...] |
/external/protobuf/src/google/protobuf/ |
map_test.cc | 301 std::nth_element(v.begin(), v.begin() + v.size() / 2, v.end()); [all...] |