Lines Matching refs:trans_height

567 INT          trans_height;  in _gx_text_scroll_wheel_round_draw()  local
633 trans_height = GX_ABS(ypos + row_height / 2 - ycenter); in _gx_text_scroll_wheel_round_draw()
635 if (trans_height == 0) in _gx_text_scroll_wheel_round_draw()
637 trans_height = row_height; in _gx_text_scroll_wheel_round_draw()
641 trans_height = GX_FIXED_VAL_MAKE(GX_ABS(height * 3 / 4 - trans_height)); in _gx_text_scroll_wheel_round_draw()
642 trans_height = 120 * trans_height / height; in _gx_text_scroll_wheel_round_draw()
644 trans_height = GX_FIXED_VAL_TO_INT(_gx_utility_math_sin(trans_height) * row_height); in _gx_text_scroll_wheel_round_draw()
646 if (trans_height < row_height / 5) in _gx_text_scroll_wheel_round_draw()
652 …_define(&draw_area, xpos, ypos, (GX_VALUE)(xpos + width - 1), (GX_VALUE)(ypos + trans_height - 1)); in _gx_text_scroll_wheel_round_draw()
654 ypos = (GX_VALUE)(ypos + trans_height); in _gx_text_scroll_wheel_round_draw()
683 trans_height = ycenter + (row_height / 2) - ypos; in _gx_text_scroll_wheel_round_draw()
685 trans_height = GX_FIXED_VAL_MAKE(GX_ABS(height * 3 / 4 - trans_height)); in _gx_text_scroll_wheel_round_draw()
686 trans_height = 120 * trans_height / height; in _gx_text_scroll_wheel_round_draw()
688 trans_height = GX_FIXED_VAL_TO_INT(_gx_utility_math_sin(trans_height) * row_height); in _gx_text_scroll_wheel_round_draw()
690 if (trans_height < row_height / 5) in _gx_text_scroll_wheel_round_draw()
695 …_gx_utility_rectangle_define(&draw_area, xpos, (GX_VALUE)(ypos - trans_height), (GX_VALUE)(xpos + … in _gx_text_scroll_wheel_round_draw()
697 ypos = (GX_VALUE)(ypos - trans_height); in _gx_text_scroll_wheel_round_draw()