| /src/games/dab/ |
| board.h | 52 size_t nx(void) const { return _nx; } 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]); 142 nx = atoi(argv[optind]); 172 sc = TTYSCRN::create(acs, &ny, &nx); 176 BOARD b(ny, nx, sc);
|
| /src/lib/libm/src/ |
| e_rem_pio2.c | 63 int32_t e0,i,j,nx,n,ix,hx; local 147 nx = 3; 148 while(tx[nx-1]==zero) nx--; /* skip zero term */ 149 n = __kernel_rem_pio2(tx,y,e0,nx,2);
|
| e_rem_pio2f.c | 96 int32_t e0,i,j,nx,n,ix,hx; local 176 nx = 3; 177 while(tx[nx-1]==zero) nx--; /* skip zero term */ 178 n = __kernel_rem_pio2f(tx,y,e0,nx,2,two_over_pi);
|
| e_rem_pio2l.h | 68 int e0,ex,i,j,nx; local 127 nx = 5; 128 while(tx[nx-1]==zero) nx--; /* skip zero term */ 129 n = __kernel_rem_pio2(tx,ty,e0,nx,3);
|
| /src/sys/dev/wscons/ |
| wscons_rops.c | 151 int y, srcx, dstx, nx; local 156 nx = rc->rc_font->width * ncols; 159 nx, rc->rc_font->height, RAS_SRC, 170 int y, startx, nx, op; local 174 nx = rc->rc_font->width * ncols; 180 nx, rc->rc_font->height, op,
|
| /src/external/bsd/libfido2/dist/src/ |
| es384.c | 190 int nx; local 211 (nx = BN_num_bytes(x)) < 0 || (size_t)nx > sizeof(pk->x) || 218 dx = sizeof(pk->x) - (size_t)nx; 221 if ((nx = BN_bn2bin(x, pk->x + dx)) < 0 || (size_t)nx > sizeof(pk->x) ||
|
| es256.c | 347 int nx; local 368 (nx = BN_num_bytes(x)) < 0 || (size_t)nx > sizeof(pk->x) || 375 dx = sizeof(pk->x) - (size_t)nx; 378 if ((nx = BN_bn2bin(x, pk->x + dx)) < 0 || (size_t)nx > sizeof(pk->x) ||
|
| /src/external/gpl2/groff/dist/src/preproc/grn/ |
| hdb.cpp | 85 double nx; /* x holder so x is not set before orienting */ local 135 nx = xorn(x, y); 137 (void) PTMakePoint(nx, y, &plist); 138 savebounds(nx, y); 162 nx = xorn(x, y); 164 (void) PTMakePoint(nx, y, &plist); 165 savebounds(nx, y); 170 nx = xorn(x, y); 172 (void) PTMakePoint(nx, y, &plist); 173 savebounds(nx, y) [all...] |
| /src/lib/libm/ld128/ |
| e_rem_pio2l.h | 70 int e0,ex,i,j,nx; local 131 nx = 5; 132 while(tx[nx-1]==zero) nx--; /* skip zero term */ 133 n = __kernel_rem_pio2(tx,ty,e0,nx,3);
|
| /src/lib/libm/ld80/ |
| e_rem_pio2l.h | 81 int e0,ex,i,j,nx,n; local 139 nx = 3; 140 while(tx[nx-1]==zero) nx--; /* skip zero term */ 141 n = __kernel_rem_pio2(tx,ty,e0,nx,2);
|
| /src/external/bsd/am-utils/dist/amd/ |
| amfs_nfsx.c | 161 struct amfs_nfsx *nx = (struct amfs_nfsx *) vp; local 164 for (i = 0; i < nx->nx_c; i++) { 165 mntfs *m = nx->nx_v[i].n_mnt; 170 XFREE(nx->nx_v); 171 XFREE(nx); 184 struct amfs_nfsx *nx; local 187 nx = (struct amfs_nfsx *) mf->mf_private; 189 if (nx == 0) { 219 nx = ALLOC(struct amfs_nfsx); 220 mf->mf_private = (opaque_t) nx; 304 struct amfs_nfsx *nx = (struct amfs_nfsx *) mf->mf_private; local 355 struct amfs_nfsx *nx = (struct amfs_nfsx *) mf->mf_private; local 368 struct amfs_nfsx *nx = (struct amfs_nfsx *) mf->mf_private; local 441 struct amfs_nfsx *nx = (struct amfs_nfsx *) mf->mf_private; local [all...] |
| /src/external/lgpl3/gmp/dist/mpz/ |
| oddfac_1.c | 387 mp_size_t nx, ns; local 396 nx = SIZ (x); 398 size = nx; 400 MPN_COPY (square, PTR (x), nx); 402 size = nx << 1; 404 mpn_sqr (square, PTR (x), nx); 408 nx = size + ns; 409 px = MPZ_NEWALLOC (x, nx); 413 SIZ(x) = nx - (cy == 0);
|
| /src/games/hack/ |
| hack.dog.c | 192 int nx, ny, omx, omy, appr, nearer, j; local 364 nx = poss[i].x; 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) 406 nix = nx; 430 if (nx == mtmp->mtrack[j].x && ny == mtmp->mtrack[j].y) 438 nearer = GDIST(nx, ny); 446 nix = nx;
|
| hack.vault.c | 269 int x, y, dx, dy, gx, gy, nx, ny, typ; local 286 for (nx = x - 1; nx <= x + 1; nx++) 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) { 294 if (egd->fakecorr[i].fx == nx && 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 471 nx = poss[i].x; 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)); 490 nix = nx; 578 int x, y, nx, ny, cnt = 0, ntyp; local 594 for (nx = x - 1; nx <= x + 1; nx++ [all...] |
| hack.shk.c | 942 xchar gx, gy, omx, omy, nx, ny, nix, niy; local 1049 nx = poss[i].x; 1051 if (levl[nx][ny].typ == ROOM 1058 if (uondoor && (ib = sobj_at(ICE_BOX, nx, ny))) { 1059 nix = nx; 1068 (appr && (zz = GDIST(nix, niy)) && zz > GDIST(nx, ny)) 1070 (appr && GDIST(nx, ny) < GDIST(nix, niy)) 1073 nix = nx;
|
| /src/sys/arch/acorn32/podulebus/ |
| esc.c | 490 struct nexus *nx; local 492 nx = dev->sc_cur_nexus; 493 if (nx) { 494 nx->cur_link = dev->sc_cur_link; 495 nx->max_link = dev->sc_max_link; 496 nx->buf = dev->sc_buf; 497 nx->len = dev->sc_len; 498 nx->dma_len = dev->sc_dma_len; 499 nx->dma_buf = dev->sc_dma_buf; 500 nx->dma_blk_flg = dev->sc_dma_blk_flg 512 struct nexus *nx; local [all...] |
| sfas.c | 490 struct nexus *nx; local 492 nx = dev->sc_cur_nexus; 493 if (nx) { 494 nx->cur_link = dev->sc_cur_link; 495 nx->max_link = dev->sc_max_link; 496 nx->buf = dev->sc_buf; 497 nx->len = dev->sc_len; 498 nx->dma_len = dev->sc_dma_len; 499 nx->dma_buf = dev->sc_dma_buf; 500 nx->dma_blk_flg = dev->sc_dma_blk_flg 512 struct nexus *nx; local [all...] |
| /src/external/bsd/tmux/dist/ |
| menu.c | 186 u_int nx, struct overlay_ranges *r) 192 menu->count + 2, px, py, nx, r); 445 u_int nx, ny, w, h; local 450 nx = md->px; 456 if (nx + w > c->tty.sx) { 458 nx = 0; 460 nx = c->tty.sx - w; 469 md->px = nx;
|
| /src/external/bsd/unbound/dist/iterator/ |
| iter_scrub.c | 255 struct rrset_parse* nx, sldns_buffer* pkt) 293 cn->rrset_all_next = nx; 297 if(nx == NULL) 462 struct rrset_parse* nx = rrset->rrset_all_next; local 483 if(nx && nx->type == LDNS_RR_TYPE_CNAME && 484 dname_pkt_compare(pkt, sname, nx->dname) == 0) { 488 if(!parse_get_cname_target(nx, &t, &tlen, pkt)) 493 rrset = nx; 500 aliaslen, region, msg, rrset, rrset, nx, pkt) 521 struct rrset_parse* nx = rrset->rrset_all_next; local [all...] |
| /src/external/cddl/osnet/sys/kern/ |
| ddi.c | 293 long nx; local 295 if ((nx = (mask & (mask - 1))) == 0) 297 mask = nx;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| rtl.cc | 433 rtx nx, ny; 442 && ((*cb) (&x, &y, &nx, &ny))) 443 return rtx_equal_p (nx, ny, cb); 428 rtx nx, ny; local
|
| /src/external/cddl/osnet/dist/lib/libdtrace/common/ |
| dt_dof.c | 100 uint_t i, nx = dtp->dt_xlatorid; local 111 ddo->ddo_xlimport = dt_alloc(dtp, sizeof (dof_secidx_t) * nx); 112 ddo->ddo_xlexport = dt_alloc(dtp, sizeof (dof_secidx_t) * nx); 114 if (nx != 0 && (ddo->ddo_xlimport == NULL || ddo->ddo_xlexport == NULL)) 117 for (i = 0; i < nx; i++) {
|
| /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
|