/src/games/dab/ |
board.h | 54 size_t tx(void) const { return _tx; } function in class:BOARD
|
ttyscrn.cc | 196 int tx, ty; local in function:TTYSCRN::create 200 tx = getmaxx(stdscr); 203 if (tx == ERR || ty == ERR 204 || static_cast<size_t>(tx) < *x * 2 + TTYSCRN::offsx + 14 210 *x = (tx - 14 - TTYSCRN::offsx) / 2; 219 that->_tx = tx; 221 that->_sx = tx - 12;
|
algor.cc | 105 size_t tx, ty; local in function:ALGOR::count_closure 108 while (find_closure(ty, tx, tdir, b)) { 111 x = tx; 115 if ((mv = b.domove(ty, tx, tdir, getWho())) == -1) 135 size_t tx = 0, ty = 0; /* XXX: GCC */ local in function:ALGOR::find_max_closure 138 while ((nbox = count_closure(ty, tx, tdir, nb)) != 0) 142 maxx = tx; 243 size_t tx, ty, minx = ~0, miny = ~0; local in function:ALGOR::find_min_closure1 246 while (find_bad_turn(ty, tx, tdir, nb, last)) { 249 if ((mv = nb.domove(ty, tx, tdir, getWho())) != 0 [all...] |
/src/games/hack/ |
hack.wizard.c | 158 schar tx, ty; local in function:inrange 167 tx = u.ux - mtmp->mx; 169 if ((!tx && abs(ty) < BOLT_LIM) || (!ty && abs(tx) < BOLT_LIM) 170 || (abs(tx) == abs(ty) && abs(tx) < BOLT_LIM)) { 174 buzz(-1, mtmp->mx, mtmp->my, sgn(tx), sgn(ty)); 249 buzz(-rnd(3), mtmp->mx, mtmp->my, sgn(tx), sgn(ty));
|
def.trap.h | 68 xchar tx,ty; member in struct:trap
|
hack.makemon.c | 241 int tx, ty; local in function:rloc 249 tx = rn1(COLNO - 3, 2); 251 } while (!goodpos(tx, ty)); 252 mtmp->mx = tx; 256 u.ux = tx;
|
hack.zap.c | 709 int tx, ty, otx, oty; local in function:rloco 714 tx = rn1(COLNO - 3, 2); 716 } while (!goodpos(tx, ty)); 717 obj->ox = tx;
|
/src/lib/libm/src/ |
e_rem_pio2f.h | 52 double tx[1],ty[1]; local in function:__ieee754_rem_pio2fd 76 tx[0] = z; 77 n = __kernel_rem_pio2(tx,ty,e0,1,0);
|
e_rem_pio2.c | 62 double tx[3]; local in function:__ieee754_rem_pio2 143 tx[i] = (double)((int32_t)(z)); 144 z = (z-tx[i])*two24; 146 tx[2] = z; 148 while(tx[nx-1]==zero) nx--; /* skip zero term */ 149 n = __kernel_rem_pio2(tx,y,e0,nx,2);
|
e_rem_pio2f.c | 95 float tx[3]; local in function:__ieee754_rem_pio2f 172 tx[i] = (float)((int32_t)(z)); 173 z = (z-tx[i])*two8; 175 tx[2] = z; 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 | 66 double tx[5],ty[3]; local in function:__ieee754_rem_pio2l 123 tx[i] = (double)((int32_t)(z)); 124 z = (z-tx[i])*two24; 126 tx[4] = z; 128 while(tx[nx-1]==zero) nx--; /* skip zero term */ 129 n = __kernel_rem_pio2(tx,ty,e0,nx,3);
|
/src/games/hunt/huntd/ |
makemaze.c | 120 int tx, ty; local in function:dig_maze 128 tx = ty = 0; 139 tx = x; 143 tx = x; 147 tx = x + 2; 151 tx = x - 2; 155 if (tx < 0 || ty < 0 || tx >= WIDTH || ty >= HEIGHT) 157 if (Maze[ty][tx] == SPACE) 159 Maze[(y + ty) / 2][(x + tx) / 2] = SPACE [all...] |
/src/sys/arch/evbmips/cavium/ |
autoconf.c | 189 prop_number_t tx, rx; local in function:prop_set_octeon_gmx 192 tx = rx = NULL; 196 tx = prop_number_create_signed(16); 200 if (tx) 201 prop_dictionary_set_and_rel(dict, "rgmii-tx", tx);
|
/src/sys/arch/evbppc/virtex/dev/ |
tft_ll.c | 97 struct ll_dmac *tx = vaa->vaa_tx_dmac; local in function:ll_tft_attach 102 KASSERT(tx); 104 lsc->lsc_dma_iot = tx->dmac_iot; 116 if ((error = bus_space_map(lsc->lsc_dma_iot, tx->dmac_ctrl_addr,
|
/src/sys/arch/powerpc/ibm4xx/dev/ |
gpiic_opb.c | 179 uint8_t tx, txen; local in function:gpiic_set_dir 187 tx = sc->sc_tx; 189 tx |= IIC_DIRECTCNTL_SDAC; 190 bus_space_write_1(sc->sc_bust, sc->sc_bush, IIC_DIRECTCNTL, tx);
|
/src/lib/libm/ld128/ |
e_rem_pio2l.h | 68 double tx[5],ty[3]; local in function:__ieee754_rem_pio2l 127 tx[i] = (double)((int32_t)(z)); 128 z = (z-tx[i])*two24; 130 tx[4] = z; 132 while(tx[nx-1]==zero) nx--; /* skip zero term */ 133 n = __kernel_rem_pio2(tx,ty,e0,nx,3);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/i2c/ |
nouveau_nvkm_subdev_i2c_base.c | 138 u32 hi, lo, rq, tx; local in function:nvkm_i2c_intr 143 i2c->func->aux_stat(i2c, &hi, &lo, &rq, &tx); 144 if (!hi && !lo && !rq && !tx) 152 if (tx & aux->intr) mask |= NVKM_I2C_DONE;
|
/src/lib/libm/ld80/ |
e_rem_pio2l.h | 80 double tx[3],ty[2]; local in function:__ieee754_rem_pio2l 135 tx[i] = (double)((int32_t)(z)); 136 z = (z-tx[i])*two24; 138 tx[2] = z; 140 while(tx[nx-1]==zero) nx--; /* skip zero term */ 141 n = __kernel_rem_pio2(tx,ty,e0,nx,2);
|
/src/lib/libcurses/ |
ins_wstr.c | 138 int width, len, lx, sx, x, y, tx, ty, cw, pcw, newx, tn, w; local in function:wins_nwstr 402 tx = win->curx; 407 win->curx = tx;
|
slk.c | 815 int retval, inc, lcnt, tx; local in function:__slk_draw 843 tx = 0; 854 l->x + tx, 0, lcnt, l->label[lcnt]); 866 if (l->x + wcwidth(l->label[lcnt] + tx) >= 873 0, l->x + tx, &cc); 876 0, l->x + tx, l->label[lcnt]); 881 0, l->x + tx, &cc); 884 0, l->x + tx, l->label[lcnt]); 887 tx += wcwidth(l->label[lcnt]);
|
/src/sys/dev/pci/ |
ld_twe.c | 240 struct twe_context *tx; local in function:ld_twe_handler 244 tx = &ccb->ccb_tx; 245 bp = tx->tx_context; 246 sc = device_private(tx->tx_dv);
|
/src/games/larn/ |
create.c | 319 int tx, ty, xsize, ysize; local in function:treasureroom 321 for (tx = 1 + rnd(10); tx < MAXX - 10; tx += 10) 327 troom(lv, xsize, ysize, tx = tx + rnd(MAXX - 24), ty, rnd(3) + 6); 329 troom(lv, xsize, ysize, tx, ty, rnd(9)); 339 troom(int lv, int xsize, int ysize, int tx, int ty, int glyph) 344 for (i = tx - 1; i <= tx + xsize; i++) /* clear out space fo [all...] |
/src/sys/arch/evbppc/virtex/ |
design_gsrd1.c | 326 struct ll_dmac rx, tx; local in function:virtex_autoconf 349 vaa.vaa_tx_dmac = virtex_mpmc_mapdma(g->gdv_tx_dma, &tx);
|
design_gsrd2.c | 71 #define CDMAC_NCHAN 2 /* cdmac {Tx,Rx} */ 171 WCASE(DCR_CDMAC_BASE, CDMAC_STAT_BASE(0)); /* Tx engine */ 188 RCASE(DCR_CDMAC_BASE, CDMAC_STAT_BASE(0)); /* Tx engine */ 284 .gdv_tx_dma = 0, /* cdmac Tx */ 385 struct ll_dmac rx, tx; local in function:virtex_autoconf 405 vaa.vaa_tx_dmac = virtex_mpmc_mapdma(g->gdv_tx_dma, &tx);
|
/src/sys/dev/marvell/ |
gtmpscvar.h | 80 gtmpsc_polltx_t tx[GTMPSC_NTXDESC]; member in struct:__anon78a25b580108 112 volatile int sc_nexttx; /* "next" tx xfer index */ 113 volatile int sc_lasttx; /* "last" tx xfer index */ 119 u_char *sc_tba; /* Tx buf ptr */ 120 u_int sc_tbc; /* Tx buf cnt */
|