Lines Matching refs:char_height
295 …handle->char_height = (u16)(((handle->pixel_height)/FONT_CHAR_HEIGHT)-2); // save first line for… in DEMOWinCreateWindow()
298 …al = (u16)(((handle->pixel_height - FONT_CHAR_HEIGHT) - (handle->char_height * FONT_CHAR_HEI… in DEMOWinCreateWindow()
313 OSReport("char_height : %4d\n", handle->char_height); in DEMOWinCreateWindow()
321 handle->total_lines = (u16)(handle->char_height + handle->num_scroll_lines); in DEMOWinCreateWindow()
588 if ((row >= handle->char_height) || (col >= handle->char_width)) in DEMOWinPrintfXY()
601 …buffer_row = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % … in DEMOWinPrintfXY()
650 … v_start = (u16)(((n + handle->total_lines) - handle->char_height+1) % handle->total_lines); in DEMOWinScrollWindow()
762 if (row >= handle->char_height) in DEMOWinClearRow()
770 …buffer_row = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % … in DEMOWinClearRow()
813 …buffer_row = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % … in DEMOWinClearWindow()
815 for (i=0; i<handle->char_height; i++) in DEMOWinClearWindow()
1018 for (i=0; i<ptr->char_height; i++) in DEMOWinRefresh()
1071 …curr_y = curr_y - ( ((ptr->char_height-1)*FONT_CHAR_HEIGHT) - ((ptr->cursor_line)*FONT_CHAR_HEIGHT… in DEMOWinRefresh()