Searched refs:noise_threshold (Results 1 – 11 of 11) sorted by relevance
/external/rust/crates/criterion/src/plot/gnuplot_backend/ |
D | distributions.rs | 163 noise_threshold: f64, in rel_distribution() 200 let (fc_start, fc_end) = if noise_threshold < x_min || -noise_threshold > x_max { in rel_distribution() 206 if -noise_threshold < x_min { in rel_distribution() 209 -noise_threshold in rel_distribution() 211 if noise_threshold > x_max { in rel_distribution() 214 noise_threshold in rel_distribution() 305 comparison.noise_threshold, in rel_distributions()
|
/external/libtextclassifier/native/lang_id/ |
D | lang-id-wrapper.cc | 63 const float noise_threshold = in GetPredictions() local 69 noise_threshold < 0.01 in GetPredictions() 71 : static_cast<int>(1 / noise_threshold) + 1; in GetPredictions() 77 if (prediction.second >= noise_threshold && prediction.first != "und") { in GetPredictions()
|
/external/rust/crates/criterion/src/plot/plotters_backend/ |
D | distributions.rs | 163 noise_threshold: f64, in rel_distribution() 197 let (fc_start, fc_end) = if noise_threshold < x_min || -noise_threshold > x_max { in rel_distribution() 203 if -noise_threshold < x_min { in rel_distribution() 206 -noise_threshold in rel_distribution() 208 if noise_threshold > x_max { in rel_distribution() 211 noise_threshold in rel_distribution() 305 comparison.noise_threshold, in rel_distributions()
|
/external/rust/crates/criterion/src/ |
D | benchmark.rs | 20 pub noise_threshold: f64, field 33 pub(crate) noise_threshold: Option<f64>, field 47 noise_threshold: None, in default() 63 noise_threshold: self.noise_threshold.unwrap_or(defaults.noise_threshold), in to_complete() 188 pub fn noise_threshold(mut self, threshold: f64) -> Self { 191 self.config.noise_threshold = Some(threshold);
|
D | connection.rs | 337 noise_threshold: f64, field 348 noise_threshold: other.noise_threshold, in from()
|
D | benchmark_group.rs | 167 pub fn noise_threshold(&mut self, threshold: f64) -> &mut Self { in noise_threshold() method 170 self.partial_config.noise_threshold = Some(threshold); in noise_threshold()
|
D | lib.rs | 427 noise_threshold: 0.01, in default() 586 pub fn noise_threshold(mut self, threshold: f64) -> Criterion<M> { in noise_threshold() method 589 self.config.noise_threshold = threshold; in noise_threshold() 804 …!("Changes the default noise threshold for this run. [default: {}]", self.config.noise_threshold))) in configure_from_args() 1039 self.config.noise_threshold = num_noise_threshold; in configure_from_args()
|
D | report.rs | 29 pub noise_threshold: f64, field 612 let comparison = compare_to_threshold(&mean_est, comp.noise_threshold); in measurement_complete()
|
/external/rust/crates/criterion/src/analysis/ |
D | mod.rs | 208 noise_threshold: config.noise_threshold, in common()
|
/external/autotest/client/cros/audio/ |
D | audio_helper.py | 127 noise_threshold = str(args['n']) if 'n' in args else '400' 129 cmd = '%s -n %s -c' % (LOOPBACK_LATENCY_PATH, noise_threshold)
|
/external/rust/crates/criterion/src/html/ |
D | mod.rs | 580 let comparison = compare_to_threshold(&mean_est, comp.noise_threshold); in comparison()
|