Searched defs:num_lines (Results 1 - 6 of 6) sorted by relevance
/osnet-11/usr/src/lib/libcurses/screen/ |
H A D | V2.makenew.c | 50 makenew(int num_lines, int num_cols, int begy, int begx) argument 52 return (_makenew(num_lines, num_cols, begy, begx));
|
H A D | derwin.c | 57 derwin(WINDOW *orig, int num_lines, int nc, int by, int bx) argument 67 if (by < 0 || (by + num_lines) > orig->_maxy || bx < 0 || 72 if (num_lines == 0) 73 num_lines = orig->_maxy - by; 76 if ((win = _makenew(num_lines, nc, by + orig->_begy, 97 for (y = 0; y < num_lines; y++, hby++) 102 for (y = 0; y < num_lines; y++, by++)
|
H A D | winsdelln.c | 57 int endy, endx, to, fr, num_lines, dir; local 87 * than the window. We save num_lines only so that we 91 if ((num_lines = win->_cury - endy) > id) 92 id = num_lines; 105 num_lines = endy - fr; 109 if ((num_lines = endy - win->_cury) < id) 110 id = num_lines; 114 num_lines = fr - (win->_cury - 1); 132 for (; num_lines > 0; num_lines [all...] |
/osnet-11/usr/src/lib/efcode/engine/ |
H A D | interactive.c | 400 int num_lines = 0; variable 407 if (num_lines < MAX_LINE_BUF) 408 history_lines[num_lines++] = STRDUP(line); 519 my_line = cur_line = num_lines; 622 if (cur_line >= num_lines) 625 if (cur_line == num_lines) { 650 if (cur_line >= num_lines) 652 if (cur_line == num_lines - 1) { 655 num_lines -= 1; 656 my_line = num_lines; [all...] |
/osnet-11/usr/src/grub/grub2/grub-core/normal/ |
H A D | menu_entry.c | 64 int num_lines; member in struct:screen 250 if (linep >= screen->lines + screen->num_lines) 278 if (column <= linep->len || i + 1 < screen->num_lines) 285 if (mode == ALL_LINES && i == screen->num_lines) 322 int region_start = screen->num_lines; 344 screen->num_lines++; 346 screen->num_lines 354 ((screen->num_lines - screen->line - 2) 476 for (i = 0; i < screen->num_lines; i++) 504 screen->num_lines [all...] |
H A D | term.c | 38 int num_lines; member in struct:term_state 55 state->num_lines = 0; 104 state->num_lines--; 592 if (state && ++state->num_lines 667 if (state && ++state->num_lines
|
Completed in 56 milliseconds