HomeSort by: relevance | last modified time | path
    Searched defs:ty (Results 1 - 25 of 97) sorted by relevancy

1 2 3 4

  /src/crypto/external/apache2/openssl/dist/crypto/rc4/
rc4_enc.c 31 register RC4_INT x, y, tx, ty; local
42 d[x] = ty = d[y]; \
44 (out) = d[(tx + ty) & 0xff] ^ (in);
  /src/crypto/external/bsd/openssl/dist/crypto/rc4/
rc4_enc.c 31 register RC4_INT x, y, tx, ty; local
42 d[x]=ty=d[y]; \
44 (out) = d[(tx+ty)&0xff]^ (in);
  /src/crypto/external/bsd/openssl.old/dist/crypto/rc4/
rc4_enc.c 25 register RC4_INT x, y, tx, ty; local
36 d[x]=ty=d[y]; \
38 (out) = d[(tx+ty)&0xff]^ (in);
  /src/external/bsd/am-utils/dist/conf/mtab/
mtab_bsd.c 62 char *ty; local
68 ty = mp->f_fstypename;
74 ty = MNTTAB_TYPE_UFS;
80 ty = MNTTAB_TYPE_NFS;
86 ty = MNTTAB_TYPE_MFS;
91 ty = "unknown";
97 new_mp->mnt_type = xstrdup(ty);
mtab_aix.c 68 char *ty; local
77 ty = MNTTAB_TYPE_UFS;
82 ty = MNTTAB_TYPE_NFS;
90 ty = MNTTAB_TYPE_NFS3;
98 ty = "unknown";
104 new_mp->mnt_type = xstrdup(ty);
mtab_osf.c 53 char *ty; local
84 ty = MNTTAB_TYPE_UFS;
88 ty = MNTTAB_TYPE_NFS3;
92 ty = MNTTAB_TYPE_NFS;
95 ty = MNTTAB_TYPE_MFS;
98 ty = "unknown";
102 new_mp->mnt_type = xstrdup(ty);
  /src/games/dab/
board.h 55 size_t ty(void) const { return _ty; } function in class:BOARD
ttyscrn.cc 196 int tx, ty; local
201 ty = getmaxy(stdscr);
203 if (tx == ERR || ty == ERR
205 || static_cast<size_t>(ty) < *y * 2 + TTYSCRN::offsy) {
212 *y = (ty - TTYSCRN::offsy) / 2;
220 that->_ty = ty;
algor.cc 105 size_t tx, ty; local
108 while (find_closure(ty, tx, tdir, b)) {
112 y = ty;
115 if ((mv = b.domove(ty, tx, tdir, getWho())) == -1)
135 size_t tx = 0, ty = 0; /* XXX: GCC */ local
138 while ((nbox = count_closure(ty, tx, tdir, nb)) != 0)
143 maxy = ty;
243 size_t tx, ty, minx = ~0, miny = ~0; local
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
168 ty = u.uy - mtmp->my;
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
250 ty = rn2(ROWNO);
251 } while (!goodpos(tx, ty));
253 mtmp->my = ty;
257 u.uy = ty;
  /src/lib/libm/src/
e_rem_pio2f.h 52 double tx[1],ty[1]; local
77 n = __kernel_rem_pio2(tx,ty,e0,1,0);
78 if(hx<0) {*y = -ty[0]; return -n;}
79 *y = ty[0]; return n;
  /src/lib/libpam/modules/pam_securetty/
pam_securetty.c 66 struct ttyent *ty; local
100 if (tty != NULL && (ty = getttynam(tty)) != NULL &&
101 (ty->ty_status & TTY_SECURE) != 0)
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_fast_s_mp_mul_digs.c 55 int tx, ty; local
60 ty = MIN(b->used-1, ix);
61 tx = ix - ty;
65 tmpy = b->dp + ty;
68 while (tx++ < a->used && ty-- >= 0) { ... }
70 iy = MIN(a->used-tx, ty+1);
bn_fast_s_mp_mul_high_digs.c 47 int tx, ty, iy; local
51 ty = MIN(b->used-1, ix);
52 tx = ix - ty;
56 tmpy = b->dp + ty;
59 while (tx++ < a->used && ty-- >= 0) { ... }
61 iy = MIN(a->used-tx, ty+1);
bn_fast_s_mp_sqr.c 24 * (ty-tx) so that it never happens. You double all those
47 int tx, ty, iy; local
55 ty = MIN(a->used-1, ix);
56 tx = ix - ty;
60 tmpy = a->dp + ty;
63 while (tx++ < a->used && ty-- >= 0) { ... }
65 iy = MIN(a->used-tx, ty+1);
67 /* now for squaring tx can never equal ty
71 iy = MIN(iy, (ty-tx+1)>>1);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonISelLowering.h 117 bool isHVXVectorType(MVT Ty) const;
290 Type *Ty, unsigned AS,
372 SDValue getInstr(unsigned MachineOpc, const SDLoc &dl, MVT Ty,
374 SDNode *N = DAG.getMachineNode(MachineOpc, dl, Ty, Ops);
377 SDValue getZero(const SDLoc &dl, MVT Ty, SelectionDAG &DAG) const;
385 MVT ty(SDValue Op) const { function in class:llvm::HexagonTargetLowering
388 TypePair ty(const VectorPair &Ops) const { function in class:llvm::HexagonTargetLowering
392 MVT tyScalar(MVT Ty) const {
393 if (!Ty.isVector())
394 return Ty;
    [all...]
  /src/external/bsd/pcc/dist/pcc/arch/pdp10/
order.c 71 TWORD ty; local
74 ty = p->n_type;
77 switch (ty) {
  /src/games/hunt/huntd/
makemaze.c 120 int tx, ty; local
128 tx = ty = 0;
140 ty = y - 2;
144 ty = y + 2;
148 ty = y;
152 ty = y;
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/crypto/external/bsd/heimdal/dist/kdc/
kdc-replay.c 185 Der_type ty; local
188 &cl, &ty, &tag2, NULL);
191 if (MAKE_TAG(cl, ty, 0) != clty)
193 (int)MAKE_TAG(cl, ty, 0), (int)clty);
process.c 313 Der_type ty; local
316 &cl, &ty, &tag, NULL);
321 krb5_store_uint32(sp, MAKE_TAG(cl, ty, 0));
  /src/crypto/external/bsd/heimdal/dist/lib/asn1/
gen_decode.c 63 Der_class *cl, Der_type *ty, unsigned *tag)
68 *ty = PRIM;
73 *ty = PRIM;
80 *ty = PRIM;
85 *ty = PRIM;
90 *ty = PRIM;
95 *ty = PRIM;
100 *ty = PRIM;
105 *ty = PRIM;
110 *ty = PRIM
583 Der_type ty; local
    [all...]
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
optim.c 91 int o, ty; local
98 ty = coptype(p->n_op);
99 if( ty == LTYPE ) return(p);
101 if( ty == BITYPE ) p->n_right = optim(p->n_right);
  /src/external/bsd/pcc/dist/pcc/cc/cxxcom/
optim.c 87 int o, ty; local
94 ty = coptype(p->n_op);
95 if( ty == LTYPE ) return(p);
97 if( ty == BITYPE ) p->n_right = optim(p->n_right);

Completed in 69 milliseconds

1 2 3 4