/external/webrtc/modules/audio_processing/aec3/ |
D | echo_remover_metrics_unittest.cc | 37 std::array<EchoRemoverMetrics::DbMetric, 2> statistic; in TEST() local 38 statistic.fill(EchoRemoverMetrics::DbMetric(0.f, 100.f, -100.f)); in TEST() 44 aec3::UpdateDbMetric(value, &statistic); in TEST() 45 EXPECT_FLOAT_EQ(kValue0, statistic[0].sum_value); in TEST() 46 EXPECT_FLOAT_EQ(kValue0, statistic[0].ceil_value); in TEST() 47 EXPECT_FLOAT_EQ(kValue0, statistic[0].floor_value); in TEST() 48 EXPECT_FLOAT_EQ(kValue1, statistic[1].sum_value); in TEST() 49 EXPECT_FLOAT_EQ(kValue1, statistic[1].ceil_value); in TEST() 50 EXPECT_FLOAT_EQ(kValue1, statistic[1].floor_value); in TEST() 52 aec3::UpdateDbMetric(value, &statistic); in TEST() [all …]
|
D | echo_remover_metrics.cc | 125 std::array<EchoRemoverMetrics::DbMetric, 2>* statistic) { in UpdateDbMetric() argument 126 RTC_DCHECK(statistic); in UpdateDbMetric() 131 RTC_DCHECK_EQ(kNumBands, statistic->size()); in UpdateDbMetric() 133 for (size_t k = 0; k < statistic->size(); ++k) { in UpdateDbMetric() 138 (*statistic)[k].Update(average_band); in UpdateDbMetric()
|
D | echo_remover_metrics.h | 64 std::array<EchoRemoverMetrics::DbMetric, 2>* statistic);
|
/external/iptables/extensions/ |
D | libxt_statistic.t | 2 -m statistic;;FAIL 3 -m statistic --mode random ! --probability 0.50000000000;=;OK 4 -m statistic --mode random ! --probability 1.1;;FAIL 5 -m statistic --probability 1;;FAIL 6 -m statistic --mode nth ! --every 5 --packet 2;=;OK 7 -m statistic --mode nth ! --every 5;;FAIL 8 -m statistic --mode nth ! --every 5 --packet 5;;FAIL
|
D | libxt_statistic.txlate | 1 iptables-translate -A OUTPUT -m statistic --mode nth --every 10 --packet 1 4 iptables-translate -A OUTPUT -m statistic --mode nth ! --every 10 --packet 5 7 iptables-translate -A OUTPUT -m statistic --mode random --probability 0.1 8 nft # -A OUTPUT -m statistic --mode random --probability 0.1
|
/external/rust/crates/criterion/src/plot/gnuplot_backend/ |
D | distributions.rs | 19 statistic: Statistic, in abs_distribution() 72 statistic in abs_distribution() 121 let path = context.report_path(id, &format!("{}.svg", statistic)); in abs_distribution() 143 .map(|(statistic, distribution, estimate)| { in abs_distributions() 148 statistic, in abs_distributions() 160 statistic: Statistic, in rel_distribution() 233 statistic in rel_distribution() 284 let path = context.report_path(id, &format!("change/{}.svg", statistic)); in rel_distribution() 298 .map(|&statistic| { in rel_distributions() 302 statistic, in rel_distributions() [all …]
|
/external/rust/crates/criterion/src/plot/plotters_backend/ |
D | distributions.rs | 12 statistic: Statistic, in abs_distribution() 56 let path = context.report_path(id, &format!("{}.svg", statistic)); in abs_distribution() 67 format!("{}:{}", id.as_title(), statistic), in abs_distribution() 144 .for_each(|(statistic, distribution, estimate)| { in abs_distributions() 149 statistic, in abs_distributions() 160 statistic: Statistic, in rel_distribution() 216 let path = context.report_path(id, &format!("change/{}.svg", statistic)); in rel_distribution() 222 format!("{}:{}", id.as_title(), statistic), in rel_distribution() 298 crate::plot::CHANGE_STATS.iter().for_each(|&statistic| { in rel_distributions() 302 statistic, in rel_distributions() [all …]
|
/external/oboe/apps/OboeTester/app/src/main/cpp/ |
D | OboeStreamCallbackProxy.h | 27 void add(double statistic) { in add() argument 31 if (statistic <= 0.0) return; in add() 32 sum = statistic + sum; in add() 34 minimum = std::min(statistic, minimum.load()); in add() 35 maximum = std::max(statistic, maximum.load()); in add()
|
/external/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/ |
D | AudioStreamBase.java | 57 void add(double statistic) { in add() argument 58 if (statistic <= 0.0) return; in add() 59 sum += statistic; in add() 61 minimum = Math.min(statistic, minimum); in add() 62 maximum = Math.max(statistic, maximum); in add()
|
/external/perfetto/protos/perfetto/metrics/android/ |
D | network_metric.proto | 48 // Total packets statistic. 51 // Per core packets statistic. 59 // Total packets statistic. 62 // Per core packets statistic. 70 // Ingress traffic statistic. 73 // Egress traffic statistic
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_KthOrderStatistic.pbtxt | 3 summary: "Computes the Kth order statistic of a data set. The current" 16 the kth order statistic. There are at least k values greater than or 17 equal to the Kth order statistic. The semantics are not the same as
|
D | api_def_NthElement.pbtxt | 19 The `n`-th order statistic along each last dimensional slice. 29 summary: "Finds values of the `n`-th order statistic for the last dimension."
|
/external/rust/crates/criterion/src/stats/univariate/ |
D | mixed.rs | 15 statistic: S, in bootstrap() 42 statistic(a, b) in bootstrap() 70 statistic(a, b) in bootstrap()
|
D | mod.rs | 33 statistic: S, in bootstrap() 62 sub_distributions.push(statistic(a_resample, b_resample)); in bootstrap() 91 sub_distributions.push(statistic(a_resample, b_resample)); in bootstrap()
|
D | sample.rs | 207 pub fn bootstrap<T, S>(&self, nresamples: usize, statistic: S) -> T::Distributions in bootstrap() 220 |resamples, _| statistic(resamples.next()), in bootstrap() 242 .map(|_| statistic(resamples.next())) in bootstrap()
|
/external/rust/crates/criterion/src/stats/bivariate/ |
D | mod.rs | 69 pub fn bootstrap<T, S>(&self, nresamples: usize, statistic: S) -> T::Distributions in bootstrap() 82 |resamples, _| statistic(resamples.next()), in bootstrap() 104 .map(|_| statistic(resamples.next())) in bootstrap()
|
/external/autotest/client/site_tests/power_VideoCall/ |
D | control.16_vp8 | 12 This test simulates video call and record power related statistic.
|
D | control.16_vp8_multitask_2hr | 13 This test simulates video call multitasking and record power related statistic.
|
D | control.16_vp9 | 12 This test simulates video call and record power related statistic.
|
D | control.49_h264 | 12 This test simulates video call and record power related statistic.
|
D | control.49_vp9 | 12 This test simulates video call and record power related statistic.
|
D | control.49_vp8 | 12 This test simulates video call and record power related statistic.
|
D | control.16_h264 | 12 This test simulates video call and record power related statistic.
|
D | control.16_vp8_multitask | 12 This test simulates video call multitasking and record power related statistic.
|
D | control | 12 This test simulates video call multitasking and record power related statistic.
|