/src/lib/libmenu/ |
post.c | 43 int maxx, maxy, i; local in function:post_menu 65 getmaxyx(menu->scrwin, maxy, maxx); 66 if ((maxx == ERR) || (maxy == ERR)) return E_SYSTEM_ERROR; 68 if ((menu->cols * menu->max_item_width + menu->cols - 1) > maxx)
|
/src/lib/libcurses/ |
clrtoeol.c | 67 __LDATA *end, *maxx, *sp; local in function:wclrtoeol 92 end = &win->alines[y]->line[win->maxx]; 94 maxx = &win->alines[y]->line[x]; 96 for (sp = maxx; sp < end; sp++) { 106 maxx = sp; 119 __CTRACE(__CTRACE_ERASE, "CLRTOEOL: y = %d, minx = %d, maxx = %d, " 121 y, minx, (int)(maxx - win->alines[y]->line), 124 __touchline(win, y, x, (int)win->maxx - 1);
|
clrtobot.c | 67 __LDATA *sp, *end, *maxx; local in function:wclrtobot 81 maxx = NULL; /* XXX gcc -Wuninitialized */ 93 end = &win->alines[y]->line[win->maxx]; 98 maxx = sp; 115 (int)(maxx - win->alines[y]->line));
|
newwin.c | 90 if ((new_one = __newwin(_cursesi_screen, win->maxy, win->maxx, 130 int ry, maxy, maxx; local in function:__newwin 143 maxx = ncols > 0 ? ncols : COLS - bx + ncols; 145 if ((win = __makenew(screen, maxy, maxx, by, bx, 0, ispad)) == NULL) 170 for (sp = lp->line, j = 0; j < maxx; j++, sp++) { 179 lp->hash = __hash_line(lp->line, maxx); 197 int maxy, maxx; local in function:__subwin 207 maxx = ncols > 0 ? ncols : orig->maxx + orig->begx - bx + ncols; 210 || bx + maxx > orig->maxx + orig->begx [all...] |
curses_private.h | 104 int maxy, maxx; /* Maximum values for curx, cury. */ member in struct:__window
|
/src/games/dab/ |
algor.cc | 134 size_t maxx = ~0, maxy = ~0; local in function:ALGOR::find_max_closure 142 maxx = tx; 149 x = maxx;
|
/src/games/larn/ |
display.c | 20 static int minx, maxx, miny, maxy, k, m; variable in typeref:typename:int 244 static int d_xmin = 0, d_xmax = MAXX, d_ymin = 0, d_ymax = MAXY; 250 if (xmin == 0 && xmax == MAXX) { /* clear section of screen as 264 if (xmin <= 0 && xmax == MAXX) { /* draw stuff on right side 282 u_char screen[MAXX][MAXY]; /* template for the screen */ 290 if (d_xmin == 0 && d_xmax == MAXX && d_ymin == 0 && d_ymax == MAXY) { 367 d_xmin = 0, d_xmax = MAXX, d_ymin = 0, d_ymax = MAXY; /* for limited screen 385 maxx = x + 3; 390 maxx = x + 1; 397 if (maxx > MAXX - 1 [all...] |
/src/sys/dev/pci/ |
radeonfb.c | 226 int maxx; /* maximum x dimension */ member in struct:__anon5a2a5ee60108 661 sc->sc_maxx = radeonfb_limits[i].maxx;
|
/src/sys/dev/wscons/ |
wsconsio.h | 240 int maxx, maxy; /* maximum value of X/Y */ member in struct:wsmouse_calibcoords
|