Lines Matching refs:char_height
301 …handle->char_height = (u16)(((handle->pixel_height)/FONT_CHAR_HEIGHT)-2); // Save first line for… in DEMOWinCreateWindow()
304 …al = (u16)(((handle->pixel_height - FONT_CHAR_HEIGHT) - (handle->char_height * FONT_CHAR_HEI… in DEMOWinCreateWindow()
319 OSReport("char_height : %4d\n", handle->char_height); in DEMOWinCreateWindow()
327 handle->total_lines = (u16)(handle->char_height + handle->num_scroll_lines); in DEMOWinCreateWindow()
594 if ((row >= handle->char_height) || (col >= handle->char_width)) in DEMOWinPrintfXY()
607 …buffer_row = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % … in DEMOWinPrintfXY()
656 … v_start = (u16)(((n + handle->total_lines) - handle->char_height+1) % handle->total_lines); in DEMOWinScrollWindow()
768 if (row >= handle->char_height) in DEMOWinClearRow()
776 …buffer_row = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % … in DEMOWinClearRow()
819 …buffer_row = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % … in DEMOWinClearWindow()
821 for (i=0; i<handle->char_height; i++) in DEMOWinClearWindow()
1024 for (i=0; i<ptr->char_height; i++) in DEMOWinRefresh()
1077 …curr_y = curr_y - ( ((ptr->char_height-1)*FONT_CHAR_HEIGHT) - ((ptr->cursor_line)*FONT_CHAR_HEIGHT… in DEMOWinRefresh()