Home
last modified time | relevance | path

Searched refs:total_lines (Results 1 – 2 of 2) sorted by relevance

/RvlSDK-3.2/build/libraries/demo/src/
DDEMOWin.c324 handle->total_lines = (u16)(handle->char_height + handle->num_scroll_lines); in DEMOWinCreateWindow()
340 … handle->buffer = (u8 *)__DEMOWin_alloc(sizeof(u8) * handle->total_lines * handle->char_width); in DEMOWinCreateWindow()
343 … memset((void *)(handle->buffer), 0x20, sizeof(u8) * handle->total_lines * handle->char_width); in DEMOWinCreateWindow()
534 … handle->curr_output_line = (u16)((handle->curr_output_line + 1) % handle->total_lines); in DEMOWinLogPrintf()
535 … handle->curr_view_line = (u16)((handle->curr_view_line + 1) % handle->total_lines); in DEMOWinLogPrintf()
553 … handle->curr_output_line = (u16)((handle->curr_output_line + 1) % handle->total_lines); in DEMOWinLogPrintf()
554 … handle->curr_view_line = (u16)((handle->curr_view_line + 1) % handle->total_lines); in DEMOWinLogPrintf()
604 … = (u16)( ((handle->curr_view_line + handle->total_lines) - (handle->char_height-1)) % handle->to… in DEMOWinPrintfXY()
607 buffer_row = (u16)((buffer_row + row) % handle->total_lines); in DEMOWinPrintfXY()
651 … n = (u16)(((handle->curr_view_line + handle->total_lines) - 1) % handle->total_lines); in DEMOWinScrollWindow()
[all …]
/RvlSDK-3.2/include/demo/
DDEMOWin.h222 u16 total_lines; // Total number of buffer lines (including visible) member