Home
last modified time | relevance | path

Searched refs:typical_estimate (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/criterion/src/
Dreport.rs556 let typical_estimate = &meas.absolute_estimates.typical(); in measurement_complete() localVariable
572 formatter.format_value(typical_estimate.confidence_interval.lower_bound) in measurement_complete()
574 self.bold(formatter.format_value(typical_estimate.point_estimate)), in measurement_complete()
576 formatter.format_value(typical_estimate.confidence_interval.upper_bound) in measurement_complete()
587 typical_estimate.confidence_interval.upper_bound in measurement_complete()
589 self.bold(formatter.format_throughput(throughput, typical_estimate.point_estimate)), in measurement_complete()
592 typical_estimate.confidence_interval.lower_bound in measurement_complete()
/external/rust/crates/criterion/src/html/
Dmod.rs310 let typical_estimate = &measurements.absolute_estimates.typical(); in measurement_complete() localVariable
343 .format_throughput(thr, typical_estimate.confidence_interval.upper_bound), in measurement_complete()
345 .format_throughput(thr, typical_estimate.confidence_interval.lower_bound), in measurement_complete()
346 point: formatter.format_throughput(thr, typical_estimate.point_estimate), in measurement_complete()
353 typical_estimate.confidence_interval.confidence_level in measurement_complete()
373 Slope(typical_estimate.confidence_interval.lower_bound).r_squared(&data) in measurement_complete()
377 Slope(typical_estimate.confidence_interval.upper_bound).r_squared(&data) in measurement_complete()
381 Slope(typical_estimate.point_estimate).r_squared(&data) in measurement_complete()