Searched refs:cols (Results 1 - 16 of 16) sorted by relevance

/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/include/
H A Dwinami.h48 short rows, cols; /* dimensions */ member in struct:amii_WinDesc
86 uchar rows, cols; /* width & height of display in text units */ member in struct:amii_DisplayDesc
H A Dwintty.h31 short rows, cols; /* dimensions */ member in struct:WinDesc
54 uchar rows, cols; /* width and height of tty display */ member in struct:DisplayDesc
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/include/
H A Dwinami.h48 short rows, cols; /* dimensions */ member in struct:amii_WinDesc
86 uchar rows, cols; /* width & height of display in text units */ member in struct:amii_DisplayDesc
H A Dwintty.h31 short rows, cols; /* dimensions */ member in struct:WinDesc
54 uchar rows, cols; /* width and height of tty display */ member in struct:DisplayDesc
/seL4-refos-master/libs/libvterm/src/
H A Dvterm.c30 VTerm *vterm_new(int rows, int cols) argument
32 return vterm_new_with_allocator(rows, cols, &default_allocator, NULL);
35 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata) argument
44 vt->cols = cols;
88 *colsp = vt->cols;
91 void vterm_set_size(VTerm *vt, int rows, int cols) argument
94 vt->cols = cols;
97 (*vt->parser_callbacks->resize)(rows, cols, v
[all...]
H A Dscreen.c52 int cols; member in struct:VTermScreen
68 if(col < 0 || col >= screen->cols)
70 return screen->buffer + (screen->cols * row) + col;
81 if(buffer && row < screen->rows && col < screen->cols)
82 *new_cell = buffer[row * screen->cols + col];
159 .end_col = screen->cols,
244 int cols = src.end_col - src.start_col; local
262 cols * sizeof(ScreenCell));
508 int old_cols = screen->cols;
511 screen->cols
558 int rows, cols; local
718 int rows, cols; local
[all...]
H A Dstate.c62 state->cols = vt->cols;
141 while(state->pos.col >= 0 && state->pos.col < state->cols-1) {
255 .end_col = state->cols,
277 if(state->pos.col + width >= state->cols) {
541 for(pos.col = 0; pos.col < state->cols; pos.col++)
843 rect.end_col = state->cols;
918 rect.start_col = state->pos.col; rect.end_col = state->cols;
930 rect.start_col = 0; rect.end_col = state->cols;
942 rect.start_col = 0; rect.end_col = state->cols;
1363 on_resize(int rows, int cols, void *user) argument
[all...]
H A Dvterm_internal.h38 int cols; member in struct:VTermState
51 #define SCROLLREGION_RIGHT(state) ((state)->mode.leftrightmargin && (state)->scrollregion_right > -1 ? (state)->scrollregion_right : (state)->cols)
114 int cols; member in struct:VTerm
/seL4-refos-master/projects/refos/impl/libs/libvterm/src/
H A Dvterm.c30 VTerm *vterm_new(int rows, int cols) argument
32 return vterm_new_with_allocator(rows, cols, &default_allocator, NULL);
35 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata) argument
44 vt->cols = cols;
88 *colsp = vt->cols;
91 void vterm_set_size(VTerm *vt, int rows, int cols) argument
94 vt->cols = cols;
97 (*vt->parser_callbacks->resize)(rows, cols, v
[all...]
H A Dscreen.c52 int cols; member in struct:VTermScreen
68 if(col < 0 || col >= screen->cols)
70 return screen->buffer + (screen->cols * row) + col;
81 if(buffer && row < screen->rows && col < screen->cols)
82 *new_cell = buffer[row * screen->cols + col];
159 .end_col = screen->cols,
244 int cols = src.end_col - src.start_col; local
262 cols * sizeof(ScreenCell));
508 int old_cols = screen->cols;
511 screen->cols
558 int rows, cols; local
718 int rows, cols; local
[all...]
H A Dstate.c62 state->cols = vt->cols;
141 while(state->pos.col >= 0 && state->pos.col < state->cols-1) {
255 .end_col = state->cols,
277 if(state->pos.col + width >= state->cols) {
541 for(pos.col = 0; pos.col < state->cols; pos.col++)
843 rect.end_col = state->cols;
918 rect.start_col = state->pos.col; rect.end_col = state->cols;
930 rect.start_col = 0; rect.end_col = state->cols;
942 rect.start_col = 0; rect.end_col = state->cols;
1363 on_resize(int rows, int cols, void *user) argument
[all...]
H A Dvterm_internal.h38 int cols; member in struct:VTermState
51 #define SCROLLREGION_RIGHT(state) ((state)->mode.leftrightmargin && (state)->scrollregion_right > -1 ? (state)->scrollregion_right : (state)->cols)
114 int cols; member in struct:VTerm
/seL4-refos-master/libs/libvterm/include/vterm/
H A Dvterm.h75 int (*resize)(int rows, int cols, void *user);
146 int (*resize)(int rows, int cols, void *user);
157 int (*resize)(int rows, int cols, void *user);
167 VTerm *vterm_new(int rows, int cols);
168 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata);
172 void vterm_set_size(VTerm *vt, int rows, int cols);
/seL4-refos-master/projects/refos/impl/libs/libvterm/include/vterm/
H A Dvterm.h75 int (*resize)(int rows, int cols, void *user);
146 int (*resize)(int rows, int cols, void *user);
157 int (*resize)(int rows, int cols, void *user);
167 VTerm *vterm_new(int rows, int cols);
168 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata);
172 void vterm_set_size(VTerm *vt, int rows, int cols);
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/win/tty/
H A Dwintty.c211 ttyDisplay->cols = CO;
215 cw->cols = ttyDisplay->cols;
286 ttyDisplay->cols = wid;
824 newwin->cols = ttyDisplay->cols;
834 newwin->maxcol = newwin->cols = 0;
846 newwin->cols = newwin->maxcol = min(ttyDisplay->cols, COLNO);
853 newwin->cols
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/win/tty/
H A Dwintty.c211 ttyDisplay->cols = CO;
215 cw->cols = ttyDisplay->cols;
286 ttyDisplay->cols = wid;
824 newwin->cols = ttyDisplay->cols;
834 newwin->maxcol = newwin->cols = 0;
846 newwin->cols = newwin->maxcol = min(ttyDisplay->cols, COLNO);
853 newwin->cols
[all...]

Completed in 175 milliseconds