/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/ |
D | max_element_comp.pass.cpp | 31 Iter i = std::max_element(first, last, std::greater<int>()); in test() 68 assert(first == std::max_element(first, last, p)); in test_eq0() 90 constexpr auto p = std::max_element(il, il+8, less()); in constexpr_test()
|
D | max_element.pass.cpp | 29 Iter i = std::max_element(first, last); in test() 70 constexpr auto p = std::max_element(il,il+8); in constexpr_test()
|
D | requires_forward_iterator.fail.cpp | 30 std::max_element(Iter(b), Iter(e)); in main()
|
/external/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.min.max/ |
D | max_element_comp.pass.cpp | 30 Iter i = std::max_element(first, last, std::greater<int>()); in test() 67 assert(first == std::max_element(first, last, p)); in test_eq0() 89 constexpr auto p = std::max_element(il, il+8, less()); in constexpr_test()
|
D | max_element.pass.cpp | 29 Iter i = std::max_element(first, last); in test() 70 constexpr auto p = std::max_element(il,il+8); in constexpr_test()
|
D | requires_forward_iterator.fail.cpp | 32 std::max_element(Iter(b), Iter(e)); in main()
|
/external/llvm-project/pstl/test/std/algorithms/alg.sorting/alg.min.max/ |
D | minmax_element.pass.cpp | 45 const Iterator expect = std::max_element(begin, end); in operator ()() 46 const Iterator result = std::max_element(exec, begin, end); in operator ()() 47 const Iterator result_pred = std::max_element(exec, begin, end, std::less<T>()); in operator ()() 170 max_element(exec, iter, iter, non_const(std::less<T>())); in operator ()()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | state_funcs.h | 57 auto maxXi = std::max_element(std::begin(_xi), &_xi[numSamples]); in CalcTileSampleOffsets() 63 auto maxYi = std::max_element(std::begin(_yi), &_yi[numSamples]); in CalcTileSampleOffsets()
|
/external/webrtc/modules/audio_processing/aec3/ |
D | subtractor_output.cc | 48 s_refined_max_abs = *std::max_element(s_refined.begin(), s_refined.end()); in ComputeMetrics() 53 s_coarse_max_abs = *std::max_element(s_coarse.begin(), s_coarse.end()); in ComputeMetrics()
|
/external/webrtc/modules/audio_processing/agc2/rnn_vad/ |
D | sequence_buffer_unittest.cc | 40 const auto* m = std::max_element(seq_buf_view.begin(), seq_buf_view.end()); in TestSequenceBufferPushOp() 45 const auto* m = std::max_element(seq_buf_view.begin(), seq_buf_view.end()); in TestSequenceBufferPushOp()
|
/external/webrtc/modules/audio_processing/test/ |
D | echo_canceller_test_tools_unittest.cc | 75 EXPECT_GE(1000.f, *std::max_element(v.begin(), v.end())); in TEST() 78 EXPECT_GE(100.f, *std::max_element(v.begin(), v.end())); in TEST()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | topk_op_gpu.h | 321 const Entry<T>& max_element = max_heap.root(); 322 top_k_values[rank] = max_element.value; 323 int shard_index = max_element.index; 333 const Entry<T>& max_element = max_heap.root(); 334 top_k_values[last_k] = max_element.value; 335 int shard_index = max_element.index;
|
D | mfcc_test.cc | 90 EXPECT_EQ(output.begin() + 1, std::max_element(output.begin(), output.end())); in TEST()
|
/external/XNNPACK/test/ |
D | dwconv-microkernel-tester.h | 191 …} while (input.size() > 1 && *std::max_element(input.cbegin(), input.cend()) == *std::min_element(… 194 …} while (kernel.size() > 1 && *std::max_element(kernel.cbegin(), kernel.cend()) == *std::min_eleme… 231 const int32_t accumulated_max = *std::max_element(accumulators.cbegin(), accumulators.cend()); 304 …} while (input.size() > 1 && *std::max_element(input.cbegin(), input.cend()) == *std::min_element(… 307 …} while (kernel.size() > 1 && *std::max_element(kernel.cbegin(), kernel.cend()) == *std::min_eleme… 344 const int32_t accumulated_max = *std::max_element(accumulators.cbegin(), accumulators.cend()); 449 const float accumulated_max = *std::max_element(output_ref.cbegin(), output_ref.cend()); 609 const float accumulated_max = *std::max_element(output_ref.cbegin(), output_ref.cend());
|
D | gemm-microkernel-tester.h | 234 …} while (a.size() > 1 && *std::max_element(a.cbegin(), a.cend()) == *std::min_element(a.cbegin(), … 237 …} while (b.size() > 1 && *std::max_element(b.cbegin(), b.cend()) == *std::min_element(b.cbegin(), … 260 const int32_t accumulated_max = *std::max_element(acc.cbegin(), acc.cend()); 332 …} while (a.size() > 1 && *std::max_element(a.cbegin(), a.cend()) == *std::min_element(a.cbegin(), … 335 …} while (b.size() > 1 && *std::max_element(b.cbegin(), b.cend()) == *std::min_element(b.cbegin(), … 385 const int32_t accumulated_max = *std::max_element(acc.cbegin(), acc.cend()); 456 …} while (a.size() > 1 && *std::max_element(a.cbegin(), a.cend()) == *std::min_element(a.cbegin(), … 459 …} while (b.size() > 1 && *std::max_element(b.cbegin(), b.cend()) == *std::min_element(b.cbegin(), … 482 const int32_t accumulated_max = *std::max_element(acc.cbegin(), acc.cend()); 549 …} while (a.size() > 1 && *std::max_element(a.cbegin(), a.cend()) == *std::min_element(a.cbegin(), … [all …]
|
D | raddexpminusmax-microkernel-tester.h | 56 const float x_max = *std::max_element(x.begin(), x.begin() + elements()); in Test()
|
D | softmax-operator-tester.h | 129 const int32_t max_input = *std::max_element( in TestQU8() 195 const double max_input = *std::max_element( in TestF32()
|
D | vscaleexpminusmax-microkernel-tester.h | 68 const float x_max = *std::max_element(x.begin(), x.begin() + elements()); in Test()
|
/external/webrtc/modules/audio_mixer/ |
D | default_output_rate_calculator.cc | 27 const int maximal_frequency = *std::max_element( in CalculateOutputRate()
|
/external/webrtc/modules/audio_device/include/ |
D | test_audio_device_unittest.cc | 179 *std::max_element(recording_buffer.begin(), recording_buffer.end()); in TEST() 188 *std::max_element(recording_buffer.begin(), recording_buffer.end()); in TEST()
|
/external/tensorflow/tensorflow/compiler/xla/tools/ |
D | show_text_literal.cc | 47 float max = *std::max_element(literal.data<float>().begin(), in main()
|
/external/webrtc/modules/audio_processing/agc2/ |
D | adaptive_digital_gain_applier_unittest.cc | 194 *std::max_element(fake_audio.float_frame_view().channel(0).begin(), in TEST() 236 *std::max_element(fake_audio.float_frame_view().channel(0).begin(), in TEST()
|
/external/libtextclassifier/native/lang_id/common/math/ |
D | softmax.cc | 85 const float max_score = *std::max_element(scores.begin(), scores.end()); in ComputeSoftmax()
|
/external/llvm-project/mlir/lib/Transforms/ |
D | LoopCoalescing.cpp | 62 *std::max_element(std::next(operandsDefinedAbove.begin(), start), in runOnFunction()
|
/external/pigweed/pw_kvs/public/pw_kvs/ |
D | flash_partition_with_stats.h | 56 return *std::max_element(sector_counters_.begin(), sector_counters_.end()); in max_erase_count()
|