Searched refs:te (Results 1 - 25 of 76) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/racoon/
H A Dthrottle.c61 struct throttle_entry *te; local
65 len = sizeof(*te)
69 if ((te = racoon_malloc(len)) == NULL)
75 timeradd(&now, &penalty, &te->penalty_ends);
77 memcpy(&te->host, addr, sysdep_sa_len(addr));
78 TAILQ_INSERT_HEAD(&throttle_list, te, next);
80 return te;
88 struct throttle_entry *te; local
97 RACOON_TAILQ_FOREACH_REVERSE(te, &throttle_list, throttle_list, next) {
101 if (timercmp(&te
[all...]
/netbsd-6-1-5-RELEASE/bin/ksh/
H A Dc_test.c114 Test_env te; local
116 te.flags = 0;
117 te.isa = ptest_isa;
118 te.getopnd = ptest_getopnd;
119 te.eval = ptest_eval;
120 te.error = ptest_error;
132 te.pos.wp = wp + 1;
133 te.wp_end = wp + argc;
147 if ((*te.isa)(&te, TM_EN
[all...]
H A Dc_test.h45 int (*isa) ARGS((Test_env *te, Test_meta meta));
46 const char *(*getopnd) ARGS((Test_env *te, Test_op op, int do_eval));
47 int (*eval) ARGS((Test_env *te, Test_op op, const char *opnd1,
49 void (*error) ARGS((Test_env *te, int offset, const char *msg));
52 Test_op test_isop ARGS((Test_env *te, Test_meta meta, const char *s));
53 int test_eval ARGS((Test_env *te, Test_op op, const char *opnd1,
55 int test_parse ARGS((Test_env *te));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dpr17844-1.c16 __typeof__(A) te;
17 int *ip = &te;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dpr17844-1.c16 __typeof__(A) te;
17 int *ip = &te;
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dtanh.c70 mpfr_t t, te; local
88 MPFR_GROUP_INIT_2 (group, MPFR_PREC_MIN, t, te);
100 MPFR_GROUP_INIT_2 (group, Nt, t, te);
105 mpfr_mul_2ui (te, x, 1, MPFR_RNDN); /* 2x */
107 mpfr_exp (te, te, MPFR_RNDN); /* exp(2x) */
108 if (MPFR_UNLIKELY (MPFR_IS_INF (te))) {
119 d = MPFR_GET_EXP (te); /* For Error calculation */
120 mpfr_add_ui (t, te, 1, MPFR_RNDD); /* exp(2x) + 1*/
121 mpfr_sub_ui (te, t
[all...]
H A Dcosh.c71 mpfr_t t, te; local
84 MPFR_GROUP_INIT_2 (group, Nt, t, te);
93 MPFR_BLOCK (flags, mpfr_exp (te, x, MPFR_RNDD)); /* exp(x) */
102 mpfr_ui_div (t, 1, te, MPFR_RNDU); /* 1/exp(x) */
103 mpfr_add (t, te, t, MPFR_RNDU); /* exp(x) + 1/exp(x)*/
117 MPFR_GROUP_REPREC_2 (group, Nt, t, te);
H A Datanh.c33 mpfr_t x, t, te; local
90 mpfr_init2 (te, Nt);
97 mpfr_ui_sub (te, 1, x, MPFR_RNDU); /* (1-xt)*/
99 mpfr_div (t, t, te, MPFR_RNDN); /* (1+xt)/(1-xt)*/
115 mpfr_set_prec (te, Nt);
122 mpfr_clear(te);
H A Dhypot.c33 mpfr_t t, te, ti; /* auxiliary variables */ local
130 mpfr_init2 (te, Nt);
146 exact = mpfr_mul_2si (te, x, sh, MPFR_RNDZ);
148 exact |= mpfr_sqr (te, te, MPFR_RNDZ);
150 exact |= mpfr_fma (t, ti, ti, te, MPFR_RNDZ);
160 mpfr_set_prec (te, Nt);
170 mpfr_clear (te);
/netbsd-6-1-5-RELEASE/lib/libc/locale/
H A D_wctrans_local.h37 _towctrans_priv(wint_t c, _WCTransEntry const *te) argument
40 ? (wint_t)te->te_cached[(size_t)c]
41 : _towctrans_ext(c, te));
H A D_wctrans.c80 _towctrans_ext(wint_t c, struct _WCTransEntry const *te) argument
87 _DIAGASSERT(te != NULL);
93 rr = te->te_extmap;
H A Diswctype_mb.c58 _WCTypeEntry const *te; \
61 te = &rl->rl_wctype[index]; \
62 return _iswctype_priv(rl, wc, te); \
82 _WCTransEntry const *te; \
85 te = &rl->rl_wctrans[index]; \
86 return _towctrans_priv(wc, te); \
124 _WCTypeEntry const *te; local
131 te = (_WCTypeEntry const *)(void *)charclass;
132 return _iswctype_priv(rl, wc, te);
138 _WCTransEntry const *te; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/tuple/cons/
H A Dconstructor.cc41 tuple<const int&> te(z1);
44 VERIFY(get<0>(td) == 0 && get<1>(td) == 1 && get<0>(te) == 1);
49 tuple<const int&> th(te);
H A Dassignment.cc42 tuple<int&> te(i);
43 te = tc;
H A Dbig_tuples.cc45 tuple<const int&> te(z1);
48 VERIFY(get<0>(td) == 0 && get<1>(td) == 1 && get<0>(te) == 1);
53 tuple<const int&> th(te);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/6_containers/tuple/cons/
H A Dconstructor.cc43 tuple<const int&> te(z1);
46 VERIFY(get<0>(td) == 0 && get<1>(td) == 1 && get<0>(te) == 1);
51 tuple<const int&> th(te);
H A Dassignment.cc42 tuple<int&> te(i);
43 te = tc;
H A Dbig_tuples.cc47 tuple<const int&> te(z1);
50 VERIFY(get<0>(td) == 0 && get<1>(td) == 1 && get<0>(te) == 1);
55 tuple<const int&> th(te);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/tr1/6_containers/tuple/cons/
H A Dconstructor.cc41 tuple<const int&> te(z1);
44 VERIFY(get<0>(td) == 0 && get<1>(td) == 1 && get<0>(te) == 1);
49 tuple<const int&> th(te);
H A Dassignment.cc42 tuple<int&> te(i);
43 te = tc;
H A Dbig_tuples.cc45 tuple<const int&> te(z1);
48 VERIFY(get<0>(td) == 0 && get<1>(td) == 1 && get<0>(te) == 1);
53 tuple<const int&> th(te);
/netbsd-6-1-5-RELEASE/external/bsd/libarchive/dist/tar/
H A Dtree.c181 struct tree_entry *te; local
188 for (te = t->stack; te != NULL; te = te->next) {
190 t->current == te ? "*" : " ",
191 te->depth,
192 te->name,
193 te->flags & needsFirstVisit ? "V" : "",
194 te
209 struct tree_entry *te; local
334 struct tree_entry *te; local
374 struct tree_entry *te; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/lib/config/
H A Dconfig.c55 const char *tb, *te; member in struct:parser
155 p->tb = p->te = p->fb;
685 p->tb++, p->te--; /* strip "'s */
688 p->te++;
695 p->tb++, p->te--; /* strip "'s */
699 p->te++;
727 p->tb = p->te;
741 switch (*p->te) {
744 p->te++;
749 p->te
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/mscdlabel/
H A Dmain.c64 struct ioc_read_toc_entry te; local
80 memset(&te, 0, sizeof(te));
81 te.address_format = CD_LBA_FORMAT;
82 te.starting_track = th.starting_track; /* always 1 ??? */
83 te.data_len = tocbufsize;
84 te.data = tocbuf;
85 res = ioctl(fd, CDIOREADTOCENTRIES, &te);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dcall-sc.c30 typedef enum { e = '1' } te; typedef in typeref:enum:__anon582

Completed in 187 milliseconds

1234