| /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/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/lgpl3/mpfr/dist/src/ |
| 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);
|
| 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);
|
| erfc.c | 128 mpfr_exp_t te, err; local 253 te = MPFR_GET_EXP (tmp); 262 err = MAX (te - MPFR_GET_EXP (tmp), 0) + 1;
|
| 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);
|
| 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...] |
| eint.c | 229 mpfr_exp_t err, te; local 343 te = MPFR_GET_EXP(tmp); 347 error <= 1/2 + 1/2*2^(EXP(ump)-EXP(tmp)) + 2^(te-EXP(tmp)+err) 348 <= 1/2 + 2^(MAX(EXP(ump), te+err+1) - EXP(tmp)) 349 <= 2^(MAX(0, 1 + MAX(EXP(ump), te+err+1) - EXP(tmp))). 352 err = MAX(1, te + err + 2); 353 te = MPFR_IS_ZERO(tmp) ? MPFR_GET_EXP(ump) : MPFR_GET_EXP(tmp); 354 err = err - te; 359 err += te + 1;
|
| /src/lib/libc/locale/ |
| 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...] |
| /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/bsd/libevent/dist/test/ |
| 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);
|
| bench.c | 107 static struct timeval ts, te; local 133 evutil_gettimeofday(&te, NULL); 140 evutil_timersub(&te, &ts, &te); 142 return (&te);
|
| /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/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/bin/ksh/ |
| table.c | 209 struct tbl *te; local 220 while ((te = tnext(&ts))) { 223 h = hash(n = te->name);
|
| 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...] |
| /src/lib/libterminfo/ |
| termcap.c | 110 const TENTRY *te; local 118 te = &_ti_cap_numids[ind]; 119 if (strcmp(id, te->id) == 0) { 120 if (!VALID_NUMERIC(cur_term->nums[te->ti])) 122 return cur_term->nums[te->ti];
|
| /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/am-utils/dist/amd/ |
| readdir.c | 207 static nfsentry *te, *te_next; local 247 te = te_next = NULL; 273 te = make_entry_chain(mp, dp->dl_entries, fully_browsable); 274 if (!te) 278 for (j = 0, ne = te; ne; ne = ne->ne_nextentry) 283 te_next = te; 291 te_next->ne_nextentry = NULL; /* terminate "te" chain */ 292 te_next = te_saved; /* save rest of "te" for next iteration */ 297 ep[1].ne_nextentry = te; /* append this chunk of "te" chain * 645 static am_entry3 *te, *te_next; local [all...] |
| /src/external/bsd/nsd/dist/simdzone/src/generic/ |
| svcb.h | 199 const char *t = token->data, *te = token->data + token->length; local 220 if (t != te || rdata->octets > rdata->limit) 267 const char *t = token->data, *te = token->data + token->length; local 288 if (t != te || rdata->octets > rdata->limit) 307 const char *t = token->data, *te = t + token->length; local 314 while ((t < te) & (rdata->octets < rdata->limit)) { 332 if (t != te || rdata->octets >= rdata->limit) 347 const char *t = token->data, *te = t + token->length; local 352 while ((t < te) & (rdata->octets < rdata->limit)) { 364 if (t != te || rdata->octets >= rdata->limit 379 const char *t = token->data, *te = token->data + token->length; local [all...] |