Home
last modified time | relevance | path

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

/external/libvterm/src/
Dstate.c944 #define UBOUND(v,max) if((v) > (max)) (v) = (max) in on_csi() macro
1163 UBOUND(rect.end_col, THISROWWIDTH(state)); in on_csi()
1361 UBOUND(state->scrollregion_top, state->rows); in on_csi()
1366 UBOUND(state->scrollregion_bottom, state->rows); in on_csi()
1375 UBOUND(state->scrollregion_left, state->cols); in on_csi()
1380 UBOUND(state->scrollregion_right, state->cols); in on_csi()
1414 UBOUND(state->pos.row, state->scrollregion_bottom-1); in on_csi()
1416 UBOUND(state->pos.col, SCROLLREGION_RIGHT(state)-1); in on_csi()
1420 UBOUND(state->pos.row, state->rows-1); in on_csi()
1422 UBOUND(state->pos.col, THISROWWIDTH(state)-1); in on_csi()