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

  /src/games/hack/
hack.bones.c 82 struct trap *ttmp; local in function:savebones
129 for (ttmp = ftrap; ttmp; ttmp = ttmp->ntrap)
130 ttmp->tseen = 0;
hack.search.c 77 struct trap *ttmp; local in function:findit
98 } else if ((ttmp = t_at(zx, zy)) != NULL) {
99 if (ttmp->ttyp == PIERC) {
102 deltrap(ttmp);
103 } else if (!ttmp->tseen) {
104 ttmp->tseen = 1;
hack.read.c 316 struct trap *ttmp; local in function:doread
322 for (ttmp = ftrap; ttmp; ttmp = ttmp->ntrap)
323 if (ttmp->tx != u.ux || ttmp->ty != u.uy)
333 for (ttmp = ftrap; ttmp; ttmp = ttmp->ntrap
    [all...]
hack.apply.c 356 struct trap *ttmp = t_at(dpx, dpy); local in function:dig
358 if (!ttmp) {
359 ttmp = maketrap(dpx, dpy, PIT);
360 ttmp->tseen = 1;
412 struct trap *ttmp = t_at(u.ux, u.uy); local in function:dighole
417 if (ttmp)
418 ttmp->ttyp = TRAPDOOR;
420 ttmp = maketrap(u.ux, u.uy, TRAPDOOR);
421 ttmp->tseen = 1;
hack.trap.c 95 struct trap *ttmp; local in function:maketrap
97 ttmp = newtrap();
98 ttmp->ttyp = typ;
99 ttmp->tseen = 0;
100 ttmp->once = 0;
101 ttmp->tx = x;
102 ttmp->ty = y;
103 ttmp->ntrap = ftrap;
104 ftrap = ttmp;
105 return (ttmp);
    [all...]
hack.c 232 struct trap *ttmp; local in function:domove
242 if ((ttmp = t_at(rx, ry)) != NULL)
243 switch (ttmp->ttyp) {
246 deltrap(ttmp);
hack.pri.c 434 struct trap *ttmp; local in function:news0
451 else if ((ttmp = t_at(x, y)) && ttmp->tseen)
hack.invent.c 246 struct trap *ttmp; local in function:deltrap
251 for (ttmp = ftrap; ttmp->ntrap != trap; ttmp = ttmp->ntrap);
252 ttmp->ntrap = trap->ntrap;
hack.mklev.c 731 struct trap *ttmp; local in function:makeniche
755 ttmp = maketrap(xx, yy + dy, TELEP_TRAP);
756 ttmp->once = 1;
779 struct trap *ttmp; local in function:mktrap
850 ttmp = maketrap(mx, my, kind);
851 if (mazeflag && !rn2(10) && ttmp->ttyp < PIERC)
852 ttmp->tseen = 1;
hack.mon.c 645 struct trap *ttmp = t_at(nx, ny); local in function:mfndpos
647 if (ttmp) {
648 tt = 1 << ttmp->ttyp;
  /src/usr.sbin/ldpd/
socketops.c 1111 struct tlv *ttmp; local in function:recv_session_pdu
1151 ttmp = (struct tlv *) (&recvspace[wo]);
1153 if ((ntohs(ttmp->type) != LDP_KEEPALIVE) &&
1154 (ntohs(ttmp->type) != LDP_LABEL_MAPPING)) {
1156 ntohs(ttmp->type), ntohs(ttmp->length),
1160 ntohs(ttmp->type), ntohs(ttmp->length),
1165 ntohs(ttmp->type) != LDP_INITIALIZE &&
1166 ntohs(ttmp->type) != LDP_KEEPALIVE &
    [all...]

Completed in 48 milliseconds