HomeSort by: relevance | last modified time | path
    Searched refs:te (Results 1 - 25 of 134) sorted by relevancy

1 2 3 4 5 6

  /src/bin/ksh/
c_test.c 114 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_END)
    [all...]
c_test.h 45 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));
syn.c 47 static int dbtestp_isa ARGS((Test_env *te, Test_meta meta));
48 static const char *dbtestp_getopnd ARGS((Test_env *te, Test_op op,
50 static int dbtestp_eval ARGS((Test_env *te, Test_op op, const char *opnd1,
52 static void dbtestp_error ARGS((Test_env *te, int offset, const char *msg));
321 Test_env te; local
323 te.flags = TEF_DBRACKET;
324 te.pos.av = &args;
325 te.isa = dbtestp_isa;
326 te.getopnd = dbtestp_getopnd;
327 te.eval = dbtestp_eval
    [all...]
  /src/crypto/dist/ipsec-tools/src/racoon/
throttle.c 60 struct throttle_entry *te; local
64 len = sizeof(*te)
68 if ((te = racoon_malloc(len)) == NULL)
74 timeradd(&now, &penalty, &te->penalty_ends);
76 memcpy(&te->host, addr, sysdep_sa_len(addr));
77 TAILQ_INSERT_HEAD(&throttle_list, te, next);
79 return te;
85 struct throttle_entry *te; local
94 RACOON_TAILQ_FOREACH_REVERSE(te, &throttle_list, throttle_list, next) {
98 if (timercmp(&te->penalty_ends, &now, <))
    [all...]
  /src/external/lgpl3/mpfr/dist/src/
tanh.c 72 mpfr_t t, te; local
90 MPFR_GROUP_INIT_2 (group, MPFR_PREC_MIN, t, te);
108 MPFR_GROUP_INIT_2 (group, Nt, t, te);
114 inexact = mpfr_mul_2ui (te, x, 1, MPFR_RNDN); /* 2x */
117 mpfr_exp (te, te, MPFR_RNDN); /* exp(2x) */
118 if (MPFR_UNLIKELY (MPFR_IS_INF (te)))
130 d = MPFR_GET_EXP (te); /* For Error calculation */
131 mpfr_add_ui (t, te, 1, MPFR_RNDD); /* exp(2x) + 1 */
132 mpfr_sub_ui (te, te, 1, MPFR_RNDU); /* exp(2x) - 1 *
    [all...]
cosh.c 73 mpfr_t t, te; local
86 MPFR_GROUP_INIT_2 (group, Nt, t, te);
95 MPFR_BLOCK (flags, mpfr_exp (te, x, MPFR_RNDD)); /* exp(x) */
104 mpfr_ui_div (t, 1, te, MPFR_RNDU); /* 1/exp(x) */
105 mpfr_add (t, te, t, MPFR_RNDU); /* exp(x) + 1/exp(x)*/
119 MPFR_GROUP_REPREC_2 (group, Nt, t, te);
hypot.c 34 mpfr_t t, te, ti; /* auxiliary variables */ local
146 mpfr_init2 (te, Nt);
177 exact = mpfr_mul_2si (te, x, sh, MPFR_RNDZ);
179 exact |= mpfr_sqr (te, te, MPFR_RNDZ);
181 exact |= mpfr_fma (t, ti, ti, te, MPFR_RNDZ);
191 mpfr_set_prec (te, Nt);
201 mpfr_clear (te);
atanh.c 106 mpfr_t x, t, te; local
165 mpfr_init2 (te, Nt);
185 mpfr_ui_sub (te, 1, x, MPFR_RNDU); /* (1-x) with x = |xt| */
187 mpfr_div (t, t, te, MPFR_RNDN); /* (1+x)/(1-x) */
204 mpfr_set_prec (te, Nt);
211 mpfr_clear (te);
  /src/lib/libc/locale/
_wctrans_local.h 37 _towctrans_priv(wint_t c, _WCTransEntry const *te)
40 ? (wint_t)te->te_cached[(size_t)c]
41 : _towctrans_ext(c, te));
_wctrans.c 80 _towctrans_ext(wint_t c, struct _WCTransEntry const *te)
87 _DIAGASSERT(te != NULL);
93 rr = te->te_extmap;
iswctype_mb.c 58 _WCTypeEntry const *te; \
61 te = &rl->rl_wctype[index]; \
62 return _iswctype_priv(rl, wc, te); \
88 _WCTransEntry const *te; \
91 te = &rl->rl_wctrans[index]; \
92 return _towctrans_priv(wc, te); \
147 _WCTypeEntry const *te; local
155 te = (_WCTypeEntry const *)(void *)charclass;
156 return _iswctype_priv(rl, wc, te);
168 _WCTransEntry const *te; local
    [all...]
_wctype.c 109 wint_t wc, _WCTypeEntry const *te)
111 return !!(_runetype_priv(rl, wc) & te->te_mask);
  /src/external/bsd/nsd/dist/simdzone/src/fallback/
name.h 21 const char *t = data, *te = t + length; local
28 while ((t < te) & (w < we)) {
51 if (t != te || w > we)
  /src/external/gpl2/lvm2/dist/lib/config/
config.c 55 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...]
  /src/tests/lib/libpthread/
t_condwait.c 53 struct timespec ts, to, te; local
80 ATF_REQUIRE_EQ(clock_gettime(clck, &te), 0);
83 (long long)te.tv_sec, te.tv_nsec);
84 timespecsub(&te, &to, &to);
89 ATF_REQUIRE(timespeccmp(&te, &ts, >=));
  /src/usr.sbin/mscdlabel/
main.c 66 struct ioc_read_toc_entry te; local
82 memset(&te, 0, sizeof(te));
83 te.address_format = CD_LBA_FORMAT;
84 te.starting_track = th.starting_track; /* always 1 ??? */
85 te.data_len = tocbufsize;
86 te.data = tocbuf;
87 res = ioctl(fd, CDIOREADTOCENTRIES, &te);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
call-sc.c 30 typedef enum { e = '1' } te; typedef in typeref:enum:__anon18036
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
call-sc.c 30 typedef enum { e = '1' } te; typedef in typeref:enum:__anon20780
  /src/external/bsd/ntp/dist/sntp/libevent/test/
bench_cascade.c 87 static struct timeval ts, te, tv_timeout; local
126 evutil_gettimeofday(&te, NULL);
127 evutil_timersub(&te, &ts, &te);
138 return (&te);
bench.c 106 static struct timeval ts, te; local
132 evutil_gettimeofday(&te, NULL);
139 evutil_timersub(&te, &ts, &te);
141 return (&te);
  /src/crypto/external/apache2/openssl/lib/libcrypto/arch/alpha/
regdef.h 46 #define te a5 macro
  /src/crypto/external/bsd/openssl/lib/libcrypto/arch/alpha/
regdef.h 46 #define te a5 macro
  /src/crypto/external/bsd/openssl.old/lib/libcrypto/arch/alpha/
regdef.h 46 #define te a5 macro
  /src/external/bsd/libevent/dist/test/
bench.c 107 static struct timeval ts, te; local
133 evutil_gettimeofday(&te, NULL);
140 evutil_timersub(&te, &ts, &te);
142 return (&te);
bench_cascade.c 88 static struct timeval ts, te, tv_timeout; local
127 evutil_gettimeofday(&te, NULL);
128 evutil_timersub(&te, &ts, &te);
139 return (&te);

Completed in 47 milliseconds

1 2 3 4 5 6