Lines Matching refs:char_height
298 …handle->char_height = (u16)(((handle->pixel_height)/FONT_CHAR_HEIGHT)-2); // Save first line for… in DEMOWinCreateWindow()
301 …al = (u16)(((handle->pixel_height - FONT_CHAR_HEIGHT) - (handle->char_height * FONT_CHAR_HEI… in DEMOWinCreateWindow()
316 OSReport("char_height : %4d\n", handle->char_height); in DEMOWinCreateWindow()
324 handle->total_lines = (u16)(handle->char_height + handle->num_scroll_lines); in DEMOWinCreateWindow()
591 if ((row >= handle->char_height) || (col >= handle->char_width)) in DEMOWinPrintfXY()
604 …buffer_row = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % … in DEMOWinPrintfXY()
653 … v_start = (u16)(((n + handle->total_lines) - handle->char_height+1) % handle->total_lines); in DEMOWinScrollWindow()
765 if (row >= handle->char_height) in DEMOWinClearRow()
773 …buffer_row = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % … in DEMOWinClearRow()
816 …buffer_row = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % … in DEMOWinClearWindow()
818 for (i=0; i<handle->char_height; i++) in DEMOWinClearWindow()
1021 for (i=0; i<ptr->char_height; i++) in DEMOWinRefresh()
1074 …curr_y = curr_y - ( ((ptr->char_height-1)*FONT_CHAR_HEIGHT) - ((ptr->cursor_line)*FONT_CHAR_HEIGHT… in DEMOWinRefresh()