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

  /src/games/hack/
hack.bones.c 82 struct trap *ttmp; local
129 for (ttmp = ftrap; ttmp; ttmp = ttmp->ntrap)
130 ttmp->tseen = 0;
hack.search.c 77 struct trap *ttmp; local
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.apply.c 356 struct trap *ttmp = t_at(dpx, dpy); local
358 if (!ttmp) {
359 ttmp = maketrap(dpx, dpy, PIT);
360 ttmp->tseen = 1;
412 struct trap *ttmp = t_at(u.ux, u.uy); local
417 if (ttmp)
418 ttmp->ttyp = TRAPDOOR;
420 ttmp = maketrap(u.ux, u.uy, TRAPDOOR);
421 ttmp->tseen = 1;
hack.read.c 316 struct trap *ttmp; local
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.trap.c 95 struct trap *ttmp; local
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
242 if ((ttmp = t_at(rx, ry)) != NULL)
243 switch (ttmp->ttyp) {
246 deltrap(ttmp);
hack.pri.c 434 struct trap *ttmp; local
451 else if ((ttmp = t_at(x, y)) && ttmp->tseen)
hack.invent.c 246 struct trap *ttmp; local
251 for (ttmp = ftrap; ttmp->ntrap != trap; ttmp = ttmp->ntrap);
252 ttmp->ntrap = trap->ntrap;
hack.mklev.c 731 struct trap *ttmp; local
755 ttmp = maketrap(xx, yy + dy, TELEP_TRAP);
756 ttmp->once = 1;
779 struct trap *ttmp; local
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
647 if (ttmp) {
648 tt = 1 << ttmp->ttyp;
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
x509_att.c 350 ASN1_TYPE *ttmp = NULL; local
383 if ((ttmp = ASN1_TYPE_new()) == NULL) {
388 if (!ASN1_TYPE_set1(ttmp, attrtype, data)) {
393 ASN1_TYPE_set(ttmp, atype, stmp);
396 if (!sk_ASN1_TYPE_push(attr->set, ttmp)) {
402 ASN1_TYPE_free(ttmp);
426 ASN1_TYPE *ttmp = X509_ATTRIBUTE_get0_type(attr, idx); local
428 if (ttmp == NULL)
432 || atrtype != ASN1_TYPE_get(ttmp)) {
436 return ttmp->value.ptr
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
x509_att.c 335 ASN1_TYPE *ttmp = NULL; local
364 if ((ttmp = ASN1_TYPE_new()) == NULL)
367 if (!ASN1_TYPE_set1(ttmp, attrtype, data))
370 ASN1_TYPE_set(ttmp, atype, stmp);
373 if (!sk_ASN1_TYPE_push(attr->set, ttmp))
378 ASN1_TYPE_free(ttmp);
400 ASN1_TYPE *ttmp; local
401 ttmp = X509_ATTRIBUTE_get0_type(attr, idx);
402 if (!ttmp)
406 || atrtype != ASN1_TYPE_get(ttmp)) {
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509/
x509_att.c 248 ASN1_TYPE *ttmp = NULL; local
277 if ((ttmp = ASN1_TYPE_new()) == NULL)
280 if (!ASN1_TYPE_set1(ttmp, attrtype, data))
283 ASN1_TYPE_set(ttmp, atype, stmp);
286 if (!sk_ASN1_TYPE_push(attr->set, ttmp))
291 ASN1_TYPE_free(ttmp);
313 ASN1_TYPE *ttmp; local
314 ttmp = X509_ATTRIBUTE_get0_type(attr, idx);
315 if (!ttmp)
319 || atrtype != ASN1_TYPE_get(ttmp)) {
    [all...]
  /src/external/mpl/dhcp/dist/omapip/
trace.c 322 trace_type_t *ttmp; local
326 ttmp = dmalloc (sizeof *ttmp, file, line);
327 if (!ttmp)
328 return ttmp;
329 ttmp -> index = -1;
330 ttmp -> name = dmalloc (slen + 1, file, line);
331 if (!ttmp -> name) {
332 dfree (ttmp, file, line);
335 strcpy (ttmp -> name, name)
    [all...]
  /src/usr.sbin/ldpd/
socketops.c 1111 struct tlv *ttmp; local
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...]
  /src/external/bsd/openldap/dist/libraries/libldap/
tpool.c 502 ldap_int_thread_task_t *task, *ttmp; local
508 ttmp = cookie;
509 pq = ttmp->ltt_queue;
515 if (task == ttmp) {

Completed in 311 milliseconds