Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dplot_bars.sh83 box_width=$(echo "(1.0-$tcp_space/2)/$num_flows" | bc -l)
87 abscissa=$(echo $x_start + 0.5 + 0.5*$box_width | bc)
90 abscissa=$(echo $abscissa + $box_width | bc)
97 abscissa=$(echo $abscissa + $box_width | bc)
101 box_width=$(echo 1.0/$num_flows | bc -l)
104 echo "set boxwidth $box_width"
171 x_bar=$(echo $x_start + 0.5 + 0.5*$box_width | bc)
179 (( $(bc <<< "$x_bar + $box_width > $x_start + 1.5 + 0.5*$tcp_space") \
184 x_bar=$(echo $x_bar + $box_width | bc)
208 x_bar=$(echo $x_start + 0.5 + 0.5*$box_width | bc)
[all …]
/external/toybox/kconfig/lxdialog/
Dinputbox.c47 int i, x, y, box_y, box_x, box_width; in dialog_inputbox() local
87 box_width = width - 6; in dialog_inputbox()
90 box_x = (width - box_width) / 2; in dialog_inputbox()
91 draw_box(dialog, y + 1, box_x - 1, 3, box_width + 2, in dialog_inputbox()
102 if (input_x >= box_width) { in dialog_inputbox()
103 scroll = input_x - box_width + 1; in dialog_inputbox()
104 input_x = box_width - 1; in dialog_inputbox()
105 for (i = 0; i < box_width - 1; i++) in dialog_inputbox()
133 scroll = scroll < box_width - 1 ? 0 : scroll - (box_width - 1); in dialog_inputbox()
135 for (i = 0; i < box_width; i++) in dialog_inputbox()
[all …]