Searched refs:leftmost_digit (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/hud/
H A Dhud_context.c771 double leftmost_digit; local in function:hud_pane_set_max_value
790 leftmost_digit = DIV_ROUND_UP(value, exp10);
793 if (leftmost_digit == 9) {
794 leftmost_digit = 1;
799 switch ((unsigned)leftmost_digit) {
808 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments */
814 pane->last_line = leftmost_digit; /* lines in +1 increments */
822 if (leftmost_digit == i && value <= (i - 0.5) * exp10) {
823 leftmost_digit = i - 0.5;
824 pane->last_line = leftmost_digit *
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/hud/
H A Dhud_context.c770 double leftmost_digit; local in function:hud_pane_set_max_value
789 leftmost_digit = DIV_ROUND_UP(value, exp10);
792 if (leftmost_digit == 9) {
793 leftmost_digit = 1;
798 switch ((unsigned)leftmost_digit) {
807 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments */
813 pane->last_line = leftmost_digit; /* lines in +1 increments */
821 if (leftmost_digit == i && value <= (i - 0.5) * exp10) {
822 leftmost_digit = i - 0.5;
823 pane->last_line = leftmost_digit *
[all...]

Completed in 4 milliseconds