Home
last modified time | relevance | path

Searched refs:sampling_mode (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/criterion/benches/benchmarks/
Dsampling_mode.rs8 group.sampling_mode(SamplingMode::Auto); in sampling_mode_tests()
13 group.sampling_mode(SamplingMode::Linear); in sampling_mode_tests()
18 group.sampling_mode(SamplingMode::Flat); in sampling_mode_tests()
Dmod.rs8 pub mod sampling_mode; module
/external/rust/crates/criterion/src/analysis/
Dmod.rs63 let (sampling_mode, iters, times); in common()
77 sampling_mode = samples.sampling_mode; in common()
91 sampling_mode = sample.0; in common()
101 sampling_method: sampling_mode.into(), in common()
152 if sampling_mode.is_linear() { in common()
167 sampling_mode, in common()
/external/rust/crates/criterion/src/
Dbenchmark.rs25 pub sampling_mode: SamplingMode, field
38 pub(crate) sampling_mode: Option<SamplingMode>, field
53 sampling_mode: None, in default()
70 sampling_mode: self.sampling_mode.unwrap_or(defaults.sampling_mode), in to_complete()
247 pub fn sampling_mode(mut self, new_mode: SamplingMode) -> Self {
248 self.config.sampling_mode = Some(new_mode);
Dbenchmark_group.rs233 pub fn sampling_mode(&mut self, new_mode: SamplingMode) -> &mut Self { in sampling_mode() method
234 self.partial_config.sampling_mode = Some(new_mode); in sampling_mode()
Droutine.rs122 .sampling_mode in sample()
Dlib.rs432 sampling_mode: SamplingMode::Auto, in default()
1564 sampling_mode: ActualSamplingMode, field
/external/rust/crates/criterion/benches/
Dbench_main.rs15 benchmarks::sampling_mode::benches,
/external/rust/crates/criterion/tests/
Dcriterion_tests.rs365 .sampling_mode(SamplingMode::Linear), in test_output_files()
429 Benchmark::new("output_flat", |b| b.iter(|| 10)).sampling_mode(SamplingMode::Flat), in test_output_files_flat_sampling()