Home
last modified time | relevance | path

Searched refs:te (Results 1 – 25 of 433) sorted by relevance

12345678910>>...18

/netbsd-src/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_END))
150 opnd1 = (*te.getopnd)(&te, TO_NONOP, 1);
[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));
H A Dsyn.c47 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 …]
H A Dexec.c289 Test_env te; local
291 te.flags = TEF_DBRACKET;
292 te.pos.wp = t->args;
293 te.isa = dbteste_isa;
294 te.getopnd = dbteste_getopnd;
295 te.eval = dbteste_eval;
296 te.error = dbteste_error;
298 rv = test_parse(&te);
1469 dbteste_isa(te, meta) in dbteste_isa() argument
1470 Test_env *te; in dbteste_isa()
[all …]
/netbsd-src/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->penalty_ends, &now, <)) {
[all …]
/netbsd-src/external/lgpl3/mpfr/dist/src/
H A Dtanh.c72 mpfr_t t, te; in mpfr_tanh() local
90 MPFR_GROUP_INIT_2 (group, MPFR_PREC_MIN, t, te); in mpfr_tanh()
108 MPFR_GROUP_INIT_2 (group, Nt, t, te); in mpfr_tanh()
114 inexact = mpfr_mul_2ui (te, x, 1, MPFR_RNDN); /* 2x */ in mpfr_tanh()
117 mpfr_exp (te, te, MPFR_RNDN); /* exp(2x) */ in mpfr_tanh()
118 if (MPFR_UNLIKELY (MPFR_IS_INF (te))) in mpfr_tanh()
130 d = MPFR_GET_EXP (te); /* For Error calculation */ in mpfr_tanh()
131 mpfr_add_ui (t, te, 1, MPFR_RNDD); /* exp(2x) + 1 */ in mpfr_tanh()
132 mpfr_sub_ui (te, te, 1, MPFR_RNDU); /* exp(2x) - 1 */ in mpfr_tanh()
133 d = d - MPFR_GET_EXP (te); in mpfr_tanh()
[all …]
H A Dhypot.c34 mpfr_t t, te, ti; /* auxiliary variables */ in mpfr_hypot() local
146 mpfr_init2 (te, Nt); in mpfr_hypot()
177 exact = mpfr_mul_2si (te, x, sh, MPFR_RNDZ); in mpfr_hypot()
179 exact |= mpfr_sqr (te, te, MPFR_RNDZ); in mpfr_hypot()
181 exact |= mpfr_fma (t, ti, ti, te, MPFR_RNDZ); in mpfr_hypot()
191 mpfr_set_prec (te, Nt); in mpfr_hypot()
201 mpfr_clear (te); in mpfr_hypot()
H A Dcosh.c73 mpfr_t t, te; in mpfr_cosh() local
86 MPFR_GROUP_INIT_2 (group, Nt, t, te); in mpfr_cosh()
95 MPFR_BLOCK (flags, mpfr_exp (te, x, MPFR_RNDD)); /* exp(x) */ in mpfr_cosh()
104 mpfr_ui_div (t, 1, te, MPFR_RNDU); /* 1/exp(x) */ in mpfr_cosh()
105 mpfr_add (t, te, t, MPFR_RNDU); /* exp(x) + 1/exp(x)*/ in mpfr_cosh()
119 MPFR_GROUP_REPREC_2 (group, Nt, t, te); in mpfr_cosh()
H A Datanh.c106 mpfr_t x, t, te; in mpfr_atanh() local
165 mpfr_init2 (te, Nt); in mpfr_atanh()
185 mpfr_ui_sub (te, 1, x, MPFR_RNDU); /* (1-x) with x = |xt| */ in mpfr_atanh()
187 mpfr_div (t, t, te, MPFR_RNDN); /* (1+x)/(1-x) */ in mpfr_atanh()
204 mpfr_set_prec (te, Nt); in mpfr_atanh()
211 mpfr_clear (te); in mpfr_atanh()
/netbsd-src/external/gpl2/lvm2/dist/lib/config/
H A Dconfig.c55 const char *tb, *te; member
155 p->tb = p->te = p->fb; in _parse_config_file()
685 p->tb++, p->te--; /* strip "'s */ in _type()
688 p->te++; in _type()
695 p->tb++, p->te--; /* strip "'s */ in _type()
699 p->te++; in _type()
727 p->tb = p->te; in _get_token()
741 switch (*p->te) { in _get_token()
744 p->te++; in _get_token()
749 p->te++; in _get_token()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/po/
H A DPOTFILES.in184 config/te-386bsd.h
185 config/te-aix5.h
186 config/te-armeabi.h
187 config/te-armfbsdeabi.h
188 config/te-armfbsdvfp.h
189 config/te-armlinuxeabi.h
190 config/te-csky_abiv1.h
191 config/te-csky_abiv1_linux.h
192 config/te-csky_abiv2.h
193 config/te-csky_abiv2_linux.h
[all …]
/netbsd-src/external/bsd/nvi/dist/catalog/
H A Ddutch.base1 002 "regel te lang"
10 011 "geen wijzigingen om ongedaan te maken"
13 014 "geen wijzigingen om te herhalen"
30 031 "Niet in staat om de standaard %s optie in te stellen"
36 037 "set: %s optie: %s: getal is te groot"
40 041 "Aantal kolommen te groot, meer dan %d"
42 043 "Aantal regels te groot, meer dan %d"
62 068 "U heeft geen bestand genaamd %s te herstellen"
66 072 "Bestand leeg; niets om te doorzoeken"
92 099 "Adres waarde te groot"
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/po/
H A DPOTFILES.in190 config/te-386bsd.h
191 config/te-aix5.h
192 config/te-armeabi.h
193 config/te-armfbsdeabi.h
194 config/te-armfbsdvfp.h
195 config/te-armlinuxeabi.h
196 config/te-csky_abiv1.h
197 config/te-csky_abiv1_linux.h
198 config/te-csky_abiv2.h
199 config/te-csky_abiv2_linux.h
[all …]
/netbsd-src/lib/libc/locale/
H A Diswctype_mb.c58 _WCTypeEntry const *te; \
61 te = &rl->rl_wctype[index]; \
62 return _iswctype_priv(rl, wc, te); \
88 _WCTransEntry const *te; \ in _ISWCTYPE_FUNC()
91 te = &rl->rl_wctrans[index]; \ in _ISWCTYPE_FUNC()
92 return _towctrans_priv(wc, te); \ in _ISWCTYPE_FUNC()
147 _WCTypeEntry const *te; in iswctype_l() local
155 te = (_WCTypeEntry const *)(void *)charclass; in iswctype_l()
156 return _iswctype_priv(rl, wc, te); in iswctype_l()
168 _WCTransEntry const *te; in towctrans() local
[all …]
H A D_wctrans_local.h37 _towctrans_priv(wint_t c, _WCTransEntry const *te) in _towctrans_priv() argument
40 ? (wint_t)te->te_cached[(size_t)c] in _towctrans_priv()
41 : _towctrans_ext(c, te)); in _towctrans_priv()
/netbsd-src/external/bsd/libbind/dist/doc/
H A Dgetnetent.cat34 …nneetteenntt, ggeettnneettbbyyaaddddrr, ggeettnneettbbyynnaammee, s…
11 ggeettnneetteenntt();
20 sseettnneetteenntt(_i_n_t _s_t_a_y_o_p_e_n);
23 eennddnneetteenntt();
26 …The ggeettnneetteenntt(), ggeettnneettbbyynnaammee(), and ggeettnneettb…
48 …If the _s_t_a_y_o_p_e_n flag on a sseettnneetteenntt() subroutine is NULL, the _…
49 database is opened. Otherwise, the sseettnneetteenntt() has the effect of rewind-
50 …ing the _n_e_t_w_o_r_k_s database. The eennddnneetteenntt() subroutine may be ca…
53 The ggeettnneetteenntt() subroutine simply reads the next line while
56 The ggeettnneetteenntt() subroutine keeps a pointer in the database, allowing suc-
[all …]
/netbsd-src/external/bsd/am-utils/dist/amd/
H A Dreaddir.c207 static nfsentry *te, *te_next; in amfs_readdir_browsable() local
247 te = te_next = NULL; in amfs_readdir_browsable()
273 te = make_entry_chain(mp, dp->dl_entries, fully_browsable); in amfs_readdir_browsable()
274 if (!te) in amfs_readdir_browsable()
278 for (j = 0, ne = te; ne; ne = ne->ne_nextentry) in amfs_readdir_browsable()
283 te_next = te; in amfs_readdir_browsable()
297 ep[1].ne_nextentry = te; /* append this chunk of "te" chain */ in amfs_readdir_browsable()
300 for (j = 0, ne = te; ne; ne = ne->ne_nextentry) in amfs_readdir_browsable()
330 te = te_next; /* reset 'te' from last saved te_next */ in amfs_readdir_browsable()
331 if (!te) { /* another indicator of end of readdir */ in amfs_readdir_browsable()
[all …]
/netbsd-src/usr.sbin/mscdlabel/
H A Dmain.c66 struct ioc_read_toc_entry te; in getcdtoc() local
82 memset(&te, 0, sizeof(te)); in getcdtoc()
83 te.address_format = CD_LBA_FORMAT; in getcdtoc()
84 te.starting_track = th.starting_track; /* always 1 ??? */ in getcdtoc()
85 te.data_len = tocbufsize; in getcdtoc()
86 te.data = tocbuf; in getcdtoc()
87 res = ioctl(fd, CDIOREADTOCENTRIES, &te); in getcdtoc()
/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A DMakefile.am54 TARG_ENV_H = $(srcdir)/config/te-@te_file@.h
313 config/te-386bsd.h \
314 config/te-aix5.h \
315 config/te-armeabi.h \
316 config/te-armfbsdeabi.h \
317 config/te-armfbsdvfp.h \
318 config/te-armlinuxeabi.h \
319 config/te-csky_abiv1.h \
320 config/te-csky_abiv1_linux.h \
321 config/te-csky_abiv2.h \
[all …]
/netbsd-src/tests/lib/libpthread/
H A Dt_condwait.c53 struct timespec ts, to, te; in run() local
80 ATF_REQUIRE_EQ(clock_gettime(clck, &te), 0); in run()
83 (long long)te.tv_sec, te.tv_nsec); in run()
84 timespecsub(&te, &to, &to); in run()
89 ATF_REQUIRE(timespeccmp(&te, &ts, >=)); in run()
/netbsd-src/external/gpl3/binutils/dist/gas/
H A DMakefile.am54 TARG_ENV_H = $(srcdir)/config/te-@te_file@.h
328 config/te-386bsd.h \
329 config/te-aix5.h \
330 config/te-armeabi.h \
331 config/te-armfbsdeabi.h \
332 config/te-armfbsdvfp.h \
333 config/te-armlinuxeabi.h \
334 config/te-csky_abiv1.h \
335 config/te-csky_abiv1_linux.h \
336 config/te-csky_abiv2.h \
[all …]
/netbsd-src/external/bsd/libevent/dist/test/
H A Dbench_cascade.c88 static struct timeval ts, te, tv_timeout; in run_once() local
127 evutil_gettimeofday(&te, NULL); in run_once()
128 evutil_timersub(&te, &ts, &te); in run_once()
139 return (&te); in run_once()
H A Dbench.c107 static struct timeval ts, te; in run_once() local
133 evutil_gettimeofday(&te, NULL); in run_once()
140 evutil_timersub(&te, &ts, &te); in run_once()
142 return (&te); in run_once()
/netbsd-src/lib/libc/nls/
H A Dnl.msg15 7 Argumenten lijst is te lang
55 27 Bestand is te groot
69 34 Resultaat te groot of te klein
121 60 Verbinding te lang niet mogelijk
127 63 Bestandsnaam te lang
169 84 Waarde te groot om te bewaren in data type
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/po/
H A Dsl.po45 msgstr "Ta program teče kot proces številka %d."
51 msgstr "Ta program teče kot proces številka %1."
64 msgstr "Ta program teče kot proces številka $pid."
69 msgstr "Ta program teče kot proces številka %(pid)d."
74 msgstr "Ta program teče kot proces številka ~D."
81 msgstr "Ta program teče kot proces številka {0}."
86 msgstr "Ta program teče kot proces številka {pid}."

12345678910>>...18