Home
last modified time | relevance | path

Searched refs:scaled_y (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/criterion/src/plot/plotters_backend/
Diteration_times.rs14 let mut scaled_y: Vec<_> = data.iter().map(|(f, _)| f).collect(); in iteration_times_figure() localVariable
15 let unit = formatter.scale_values(max_avg_time, &mut scaled_y); in iteration_times_figure()
16 let scaled_y = Sample::new(&scaled_y); in iteration_times_figure() localVariable
27 let y_range = plotters::data::fitting_range(scaled_y.iter()); in iteration_times_figure()
47 .zip(scaled_y.iter()) in iteration_times_figure()
Dregression.rs23 let mut scaled_y: Vec<f64> = data.y().iter().cloned().collect(); in regression_figure() localVariable
24 let unit = formatter.scale_values(typical, &mut scaled_y); in regression_figure()
25 let scaled_y = Sample::new(&scaled_y); in regression_figure() localVariable
50 let y_range = plotters::data::fitting_range(scaled_y.iter()); in regression_figure()
72 .zip(scaled_y.iter()) in regression_figure()
/external/libvpx/libvpx/vp9/common/
Dvp9_scale.c20 static INLINE int scaled_y(int val, const struct scale_factors *sf) { in scaled_y() function
39 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf) & SUBPEL_MASK; in vp9_scale_mv()
40 const MV32 res = { scaled_y(mv->row, sf) + y_off_q4, in vp9_scale_mv()
62 sf->y_step_q4 = scaled_y(16, sf);
66 sf->scale_value_y = scaled_y;
/external/libaom/libaom/av1/common/
Dscale.c29 static INLINE int scaled_y(int val, const struct scale_factors *sf) { in scaled_y() function
60 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf); in av1_scale_mv()
61 const MV32 res = { scaled_y((y << SUBPEL_BITS) + mvq4->row, sf) - y_off_q4, in av1_scale_mv()
82 sf->scale_value_y = scaled_y; in av1_setup_scale_factors_for_frame()
/external/rust/crates/criterion/src/plot/gnuplot_backend/
Diteration_times.rs17 let mut scaled_y: Vec<_> = data.iter().map(|(f, _)| f).collect(); in iteration_times_figure() localVariable
18 let unit = formatter.scale_values(max_avg_time, &mut scaled_y); in iteration_times_figure()
19 let scaled_y = Sample::new(&scaled_y); in iteration_times_figure() localVariable
35 y: scaled_y.as_ref(), in iteration_times_figure()
Dregression.rs26 let mut scaled_y: Vec<f64> = data.y().iter().cloned().collect(); in regression_figure() localVariable
27 let unit = formatter.scale_values(typical, &mut scaled_y); in regression_figure()
28 let scaled_y = Sample::new(&scaled_y); in regression_figure() localVariable
60 y: scaled_y.as_ref(), in regression_figure()