Home
last modified time | relevance | path

Searched refs:minmax_element (Results 1 – 25 of 42) sorted by relevance

12

/external/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.min.max/
Dminmax_element.pass.cpp29 std::pair<Iter, Iter> p = std::minmax_element(first, last); in test()
73 std::pair<Iter, Iter> p = std::minmax_element(Iter(a), Iter(a+N)); in test()
87 constexpr auto p = std::minmax_element(il, il+8); in constexpr_test()
Dminmax_element_comp.pass.cpp32 std::pair<Iter, Iter> p = std::minmax_element(first, last, comp); in test()
78 std::pair<Iter, Iter> p = std::minmax_element(Iter(a), Iter(a+N), comp); in test()
93 constexpr auto p = std::minmax_element(il, il+8, less()); in constexpr_test()
Drequires_forward_iterator.fail.cpp36 std::minmax_element(Iter(b), Iter(e)); in main()
/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/
Dminmax_element.pass.cpp29 std::pair<Iter, Iter> p = std::minmax_element(first, last); in test()
73 std::pair<Iter, Iter> p = std::minmax_element(Iter(a), Iter(a+N)); in test()
87 constexpr auto p = std::minmax_element(il, il+8); in constexpr_test()
Dminmax_element_comp.pass.cpp33 std::pair<Iter, Iter> p = std::minmax_element(first, last, comp); in test()
79 std::pair<Iter, Iter> p = std::minmax_element(Iter(a), Iter(a+N), comp); in test()
94 constexpr auto p = std::minmax_element(il, il+8, less()); in constexpr_test()
Drequires_forward_iterator.fail.cpp34 std::minmax_element(Iter(b), Iter(e)); in main()
/external/llvm-project/pstl/test/std/algorithms/alg.sorting/alg.min.max/
Dminmax_element.pass.cpp60 const std::pair<Iterator, Iterator> expect = std::minmax_element(begin, end); in operator ()()
61 const std::pair<Iterator, Iterator> got = std::minmax_element(exec, begin, end); in operator ()()
62 …const std::pair<Iterator, Iterator> got_pred = std::minmax_element(exec, begin, end, std::less<T>(… in operator ()()
172 minmax_element(exec, iter, iter, non_const(std::less<T>())); in operator ()()
/external/webrtc/modules/audio_processing/aec3/
Drender_signal_analyzer.cc93 auto result0 = std::minmax_element(x_latest[0][channel].begin(), in IdentifyStrongNarrowBandComponent()
98 const auto result1 = std::minmax_element(x_latest[1][channel].begin(), in IdentifyStrongNarrowBandComponent()
Decho_audibility.cc102 auto r = std::minmax_element(block.cbegin(), block.cend()); in IsRenderTooLow()
/external/tensorflow/tensorflow/lite/tools/optimize/calibration/
Dcalibration_logger.cc42 const auto minmax = std::minmax_element(values, values + tensor_size); in Update()
/external/tensorflow/tensorflow/lite/kernels/
Delementwise_test.cc170 const auto minmax = std::minmax_element(data.begin(), data.end()); in TEST()
200 const auto minmax = std::minmax_element(data.begin(), data.end()); in TEST()
/external/llvm-project/libcxx/test/libcxx/diagnostics/
Dnodiscard_extensions.verify.cpp222 std::minmax_element(std::begin(arr), std::end(arr)); in main()
225 std::minmax_element(std::begin(arr), std::end(arr), std::greater<int>()); in main()
Dnodiscard_extensions.pass.cpp115 std::minmax_element(std::begin(arr), std::end(arr)); in main()
116 std::minmax_element(std::begin(arr), std::end(arr), std::greater<int>()); in main()
/external/llvm-project/pstl/
DREADME.md29 * For `max_element`, `min_element`, `minmax_element`, `partial_sort`, `partial_sort_copy`, `sort`, …
/external/tensorflow/tensorflow/core/kernels/
Dsparse_xent_op.cc37 auto min_max_dim_value = std::minmax_element( in CheckInvalidLabelIndex()
/external/llvm-project/libcxx/test/std/algorithms/
Drobust_against_adl.pass.cpp110 (void)std::minmax_element(t.data, t.data+10); in test()
154 (void)std::minmax_element(t.data, t.data+10, std::less<void*>()); in test()
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DSuspiciousEnumUsageCheck.cpp41 const auto MinMaxVal = std::minmax_element( in ValueRange()
/external/tensorflow/tensorflow/lite/tools/optimize/
Dquantization_utils.cc129 const auto minmax = std::minmax_element(input, input + input_size); in FillSingleMinMax()
274 const auto minmax = std::minmax_element(bias_data, bias_data + bias_size); in AdjustWeightsForBiasScale()
Dquantize_model.cc658 auto minmax = std::minmax_element(float_data, float_data + total_size); in QuantizeOpInput()
692 std::minmax_element(buffer_data, buffer_data + total_size); in QuantizeOpInput()
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dportable_tensor_utils.cc43 auto minmax = std::minmax_element(values, values + size); in PortableSymmetricQuantizeFloats()
79 const auto minmax = std::minmax_element(values, values + size); in PortableAsymmetricQuantizeFloats()
/external/llvm-project/pstl/include/pstl/internal/
Dglue_algorithm_defs.h536 minmax_element(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Compa…
540 minmax_element(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last);
Dglue_algorithm_impl.h1101 minmax_element(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Compa… in minmax_element() function
1111 minmax_element(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last) in minmax_element() function
1114 …return std::minmax_element(std::forward<_ExecutionPolicy>(__exec), __first, __last, std::less<_Val… in minmax_element()
/external/llvm-project/llvm/tools/llvm-xray/
Dxray-account.cpp276 auto MinMax = std::minmax_element(Timings.begin(), Timings.end()); in getStats()
/external/webrtc/media/engine/
Dsimulcast_encoder_adapter.cc234 const auto minmax = std::minmax_element( in InitEncode()
/external/libtextclassifier/abseil-cpp/absl/algorithm/
Dcontainer.h1555 return std::minmax_element(container_algorithm_internal::c_begin(c),
1564 return std::minmax_element(container_algorithm_internal::c_begin(c),

12