HomeSort by: relevance | last modified time | path
    Searched defs:ny (Results 1 - 19 of 19) sorted by relevancy

  /src/games/dab/
board.h 53 size_t ny(void) const { return _ny; } function in class:BOARD
main.cc 104 size_t ny, nx, nn = 1, wt = 0; local
134 ny = nx = 3;
138 ny = nx = atoi(argv[optind]);
143 ny = atoi(argv[optind+1]);
172 sc = TTYSCRN::create(acs, &ny, &nx);
176 BOARD b(ny, nx, sc);
  /src/sys/dev/wscons/
wscons_rops.c 191 int srcy, dsty, ny; local
195 ny = rc->rc_font->height * nrows;
198 rc->rc_raswidth, ny, RAS_SRC,
209 int starty, ny, op; local
212 ny = rc->rc_font->height * nrows;
218 rc->rc_raswidth, ny, op,
  /src/external/bsd/libfido2/dist/src/
es384.c 191 int ny; local
212 (ny = BN_num_bytes(y)) < 0 || (size_t)ny > sizeof(pk->y)) {
219 dy = sizeof(pk->y) - (size_t)ny;
222 (ny = BN_bn2bin(y, pk->y + dy)) < 0 || (size_t)ny > sizeof(pk->y)) {
es256.c 348 int ny; local
369 (ny = BN_num_bytes(y)) < 0 || (size_t)ny > sizeof(pk->y)) {
376 dy = sizeof(pk->y) - (size_t)ny;
379 (ny = BN_bn2bin(y, pk->y + dy)) < 0 || (size_t)ny > sizeof(pk->y)) {
  /src/games/hack/
hack.dog.c 192 int nx, ny, omx, omy, appr, nearer, j; local
365 ny = poss[i].y;
367 mtmp2 = m_at(nx, ny);
384 if ((info[i] & ALLOW_TRAPS) && (trap = t_at(nx, ny))) {
394 if (obj->ox != nx || obj->oy != ny)
407 niy = ny;
430 if (nx == mtmp->mtrack[j].x && ny == mtmp->mtrack[j].y)
438 nearer = GDIST(nx, ny);
447 niy = ny;
hack.vault.c 269 int x, y, dx, dy, gx, gy, nx, ny, typ; local
287 for (ny = y - 1; ny <= y + 1; ny++) {
288 if (nx == x || ny == y)
289 if (nx != x || ny != y)
290 if (isok(nx, ny))
291 if (!IS_WALL(typ = (crm = &levl[nx][ny])->typ) && typ != POOL) {
295 egd->fakecorr[i].fy == ny)
297 if ((i = inroom(nx, ny)) >= 0 && rooms[i].rtype == VAULT
    [all...]
hack.mon.c 320 int nx, ny, omx, omy, appr, nearer, cnt, i, j; local
472 ny = poss[i].y;
474 if (nx == mtmp->mtrack[j].x && ny == mtmp->mtrack[j].y)
480 int d1 = DIST(nx, ny, gx, gy);
485 nearer = (DIST(nx, ny, gx, gy) < DIST(nix, niy, gx, gy));
491 niy = ny;
578 int x, y, nx, ny, cnt = 0, ntyp; local
595 for (ny = y - 1; ny <= y + 1; ny++
    [all...]
hack.shk.c 942 xchar gx, gy, omx, omy, nx, ny, nix, niy; local
1050 ny = poss[i].y;
1051 if (levl[nx][ny].typ == ROOM
1058 if (uondoor && (ib = sobj_at(ICE_BOX, nx, ny))) {
1060 niy = ny;
1068 (appr && (zz = GDIST(nix, niy)) && zz > GDIST(nx, ny))
1070 (appr && GDIST(nx, ny) < GDIST(nix, niy))
1074 niy = ny;
  /src/external/bsd/tmux/dist/
menu.c 445 u_int nx, ny, w, h; local
451 ny = md->py;
463 if (ny + h > c->tty.sy) {
465 ny = 0;
467 ny = c->tty.sy - h;
470 md->py = ny;
grid.c 287 grid_free_lines(struct grid *gd, u_int py, u_int ny)
291 for (yy = py; yy < py + ny; yy++)
362 grid_trim_history(struct grid *gd, u_int ny)
364 grid_free_lines(gd, 0, ny);
365 memmove(&gd->linedata[0], &gd->linedata[ny],
366 (gd->hsize + gd->sy - ny) * (sizeof *gd->linedata));
376 u_int ny; local
381 ny = gd->hlimit / 10;
382 if (ny < 1)
383 ny = 1
    [all...]
tty.c 1112 u_int py, u_int nx, u_int ny)
1120 yoff + ny <= ctx->woy || yoff >= ctx->woy + ctx->wsy)
1232 u_int nx, u_int ny, u_int *i, u_int *j, u_int *x, u_int *y, u_int *rx,
1237 if (!tty_is_visible(tty, ctx, px, py, nx, ny))
1264 if (yoff >= ctx->woy && yoff + ny <= ctx->woy + ctx->wsy) {
1268 *ry = ny;
1269 } else if (yoff < ctx->woy && yoff + ny > ctx->woy + ctx->wsy) {
1278 *ry = ny - *j;
1285 if (*ry > ny)
1286 fatalx("%s: y too big, %u > %u", __func__, *ry, ny);
2082 u_int px, py, nx, ny; local
2107 u_int px, py, nx, ny; local
2132 u_int px, py, nx, ny; local
    [all...]
window-copy.c 4492 struct screen_write_ctx *ctx, u_int py, u_int ny)
4496 for (yy = py; yy < py + ny; yy++)
4529 window_copy_redraw_lines(struct window_mode_entry *wme, u_int py, u_int ny)
4537 for (i = py; i < py + ny; i++)
5679 window_copy_scroll_up(struct window_mode_entry *wme, u_int ny)
5686 if (data->oy < ny)
5687 ny = data->oy;
5688 if (ny == 0)
5690 data->oy -= ny;
5698 screen_write_deleteline(&ctx, ny, 8)
5934 u_int cy, yy, ny, nd; local
5960 u_int cy, yy, ny, nd; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
lgammaq_neg.c 513 __float128 ny0, ny0_eps, ny, ny_eps; local
518 ny = y + n_up;
519 ny_eps = y - (ny - n_up) + y_eps;
520 y = ny;
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
symtabs.c 531 int ny = *new++; local
532 if (ny == 'u' && *new == '8')
533 ny = '8', new++;
534 if (strtype && ny != strtype)
536 strtype = ny;
  /src/external/gpl3/gcc.old/dist/gcc/
rtl.cc 432 rtx nx, ny;
441 && ((*cb) (&x, &y, &nx, &ny)))
442 return rtx_equal_p_cb (nx, ny, cb);
427 rtx nx, ny; local
  /src/external/gpl2/groff/dist/src/devices/grolbp/
lbp.h 173 char nx[4],ny[4]; local
175 vdmprintf("}\"%s%s\x1e",vdmnum(newx,nx),vdmnum(newy,ny));
  /src/external/gpl2/groff/dist/src/preproc/grn/
hgraph.cpp 590 int ny; local
617 ny = cy + (int) (ys + 0.5);
619 HGtline(nx, ny); /* put out a point on circle */
718 int ny; local
754 ny = y[j] + (int) (t * dy[j] + t2 * d2y[j] / 2 + t3 * d3y[j] / 6);
755 HGtline(nx, ny);
  /src/sys/dev/pci/
tga.c 938 int srcy, dsty, ny; local
942 ny = ri->ri_font->fontheight * nrows;
945 ri->ri_emuwidth, ny, RAS_SRC,

Completed in 59 milliseconds