Searched refs:eps (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-current/share/examples/BSD_daemon/
H A Dposter.sh13 cat beastie.eps
/freebsd-current/sbin/devd/
H A Ddevd.h36 struct eps;
43 struct event_proc *add_to_event_proc(struct event_proc *, struct eps *);
44 struct eps *new_match(const char *, const char *);
45 struct eps *new_media(const char *, const char *);
46 struct eps *new_action(const char *);
H A Ddevd.hh65 * eps is short for event_proc_single. It is a single entry in an
66 * event_proc. Each keyword needs its own subclass from eps.
68 struct eps struct
71 virtual ~eps() {}
72 /** Does this eps match the current config?
75 /** Perform some action for this eps.
84 class match : public eps
102 class media : public eps
117 class action : public eps
135 void add(eps *);
[all...]
H A Dparse.y41 struct eps *eps; /* EventProcStatement */
53 %type <eps> match_or_action match action
H A Ddevd.cc186 event_proc::add(eps *eps) argument
188 _epsvec.push_back(eps);
194 vector<eps *>::const_iterator i;
205 vector<eps *>::const_iterator i;
1188 add_to_event_proc(event_proc *ep, eps *eps) argument
1192 ep->add(eps);
1196 eps *
1199 eps *
[all...]
/freebsd-current/share/doc/papers/timecounter/
H A DMakefile8 EXTRA= fig1.eps fig2.eps fig3.eps fig4.eps fig5.eps gps.ps intr.ps
16 sed -E -e 's;(gps|intr).ps;${.CURDIR}/&;' -e 's;fig[0-9].eps;${.CURDIR}/&;' \
/freebsd-current/sys/dev/smbios/
H A Dsmbios.c60 struct smbios_eps * eps; member in union:smbios_softc::__anon457
83 struct smbios_eps *eps; local
88 size_t map_size = sizeof (*eps);
124 eps = ptr;
125 length = eps->length;
126 if (memcmp(eps->anchor_string,
129 eps->anchor_string);
136 major = eps->major_version;
137 minor = eps->minor_version;
143 pmap_unmapbios(eps, map_siz
303 struct smbios_eps *eps; local
[all...]
/freebsd-current/share/doc/papers/bufbio/
H A DMakefile5 EXTRA= bufsize.eps
11 sed "s;bufsize\.eps;${.CURDIR}/&;" ${.ALLSRC} > ${.TARGET}
/freebsd-current/contrib/flex/src/
H A Dnfa.c379 int eps; local
387 eps = mkstate (SYM_EPSILON);
389 mkxtion (eps, first);
390 mkxtion (eps, second);
392 return eps;
426 int eps; local
429 eps = mkstate (SYM_EPSILON);
430 mach = link_machines (mach, eps);
437 eps = mkstate (SYM_EPSILON);
438 mach = link_machines (eps, mac
462 int eps, orend; local
517 int eps; local
[all...]
/freebsd-current/share/doc/papers/jail/
H A DMakefile5 EXTRA= implementation.ms mgt.ms future.ms jail01.eps
11 sed "s;jail01\.eps;${.CURDIR}/&;" ${.ALLSRC} > ${.TARGET}
/freebsd-current/tests/sys/kern/acct/
H A Dacct_test.c58 double eps; local
60 eps = fabs(expected - v.f) / expected;
61 ATF_CHECK(eps <= FLT_EPSILON);
62 if (eps > FLT_EPSILON) {
67 printf("Epsilon=%lg, rather than %g\n", eps, FLT_EPSILON);
/freebsd-current/lib/libc/rpc/
H A Dauth_time.c107 * Free the strings that were strduped into the eps structure.
110 free_eps(endpoint eps[], int num) argument
115 free(eps[i].uaddr);
116 free(eps[i].proto);
117 free(eps[i].family);
135 * eps[] - array of endpoints
140 endpoint eps[], int maxep)
167 for (i = 0, ep = eps; (he->h_addr_list[i] != NULL) && (num_ep < maxep);
177 free_eps(eps, num_ep + 1);
192 free_eps(eps, num_e
139 get_server(struct sockaddr_in *sin, char *host, nis_server *srv, endpoint eps[], int maxep) argument
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libm/
H A Dt_cosh.c67 const double eps = DBL_EPSILON; local
74 if (!(fabs((cosh(x) - cosh_x)/cosh_x) <= eps)) {
164 const float eps = FLT_EPSILON; local
171 if (!(fabsf((coshf(x) - cosh_x)/cosh_x) <= eps)) {
H A Dt_cos.c79 const long double eps = DBL_EPSILON; local
88 if (!(fabsl((cosl(theta) - cos_theta)/cos_theta) <= eps)) {
175 const double eps = DBL_EPSILON; local
184 if (!(fabs((cos(theta) - cos_theta)/cos_theta) <= eps)) {
270 const float eps = FLT_EPSILON; local
293 if (!(fabsf((result - cos_theta)/cos_theta) <= eps)) {
H A Dt_asin.c121 const double eps = DBL_EPSILON; local
128 if (!(fabs((asin(x) - y)/y) <= eps))
235 const float eps = FLT_EPSILON; local
247 if (!(fabsf((asinf(x) - y)/y) <= eps)) {
250 x, asinf(x), y, fabsf(((asinf(x) - y)/y)/eps));
H A Dt_cbrt.c66 const double eps = 2*DBL_EPSILON; local
77 ok = (fabs((x_cbrt - x_pow13)/x_cbrt) <= eps);
175 const float eps = 2*FLT_EPSILON; local
186 ok = (fabsf((x_cbrt - x_pow13)/x_cbrt) <= eps);
286 const long double eps = 2*LDBL_EPSILON; local
313 ok = (fabsl((x_cbrt - x_pow13)/x_cbrt) <= eps);
H A Dt_sqrt.c65 const double eps = DBL_EPSILON; local
76 ok = (fabs((x_sqrt - x_pow12)/x_sqrt) <= eps);
172 const float eps = FLT_EPSILON; local
183 ok = (fabsf((x_sqrt - x_pow12)/x_sqrt) <= eps);
280 const long double eps = DBL_EPSILON; /* XXX powl == pow for now */ local
291 ok = (fabsl((x_sqrt - x_pow12)/x_sqrt) <= eps);
H A Dt_tan.c68 const double eps = DBL_EPSILON; local
83 ok = (fabs((tan(theta) - tan_theta)/tan_theta) <= eps);
172 const float eps = FLT_EPSILON; local
191 <= eps);
H A Dt_sin.c72 const double eps = DBL_EPSILON; local
87 ok = (fabs((sin(theta) - sin_theta)/sin_theta) <= eps);
176 const float eps = FLT_EPSILON; local
193 <= eps);
H A Dt_sinh.c66 const double eps = DBL_EPSILON; local
73 if (!(fabs((sinh(x) - sinh_x)/sinh_x) <= eps)) {
165 const float eps = FLT_EPSILON; local
172 if (!(fabsf((sinhf(x) - sinh_x)/sinh_x) <= eps)) {
/freebsd-current/contrib/libcbor/test/
H A Dfloat_ctrl_test.c23 static const float eps = 0.00001f; variable
33 assert_float_equal(cbor_float_get_float(float_ctrl), 65504.0F, eps); local
46 assert_float_equal(cbor_float_get_float(float_ctrl), 100000.0F, eps); local
62 assert_true(fabs(cbor_float_get_float(float_ctrl) - (double)1.0e+300) < eps); local
/freebsd-current/contrib/gdtoa/
H A Dgdtoa.c163 U d, eps; local
378 dval(&eps) = ieps*dval(&d) + 7.;
379 word0(&eps) -= (P-1)*Exp_msk1;
383 if (dval(&d) > dval(&eps))
385 if (dval(&d) < -dval(&eps))
394 dval(&eps) = ds*0.5/tens[ilim-1] - dval(&eps);
399 if (dval(&d) < dval(&eps)) {
404 if (ds - dval(&d) < dval(&eps))
408 dval(&eps) *
[all...]
H A Ddtoa.c127 U d, d2, eps; local
375 dval(&eps) = ieps*dval(&d) + 7.;
376 word0(&eps) -= (P-1)*Exp_msk1;
380 if (dval(&d) > dval(&eps))
382 if (dval(&d) < -dval(&eps))
391 dval(&eps) = 0.5/tens[ilim-1] - dval(&eps);
396 if (dval(&d) < dval(&eps))
398 if (1. - dval(&d) < dval(&eps))
402 dval(&eps) *
[all...]
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Derfinvl.c103 double eps = fabs (yf - nextafter (yf, 0)); local
110 if (fabsl (dy) < eps)
/freebsd-current/lib/msun/tests/
H A Dnext_test.c108 #define stest(next, eps, prec) \
109 test##prec(next(-0.0, 42.0), eps, ex_under); \
110 test##prec(next(0.0, -42.0), -eps, ex_under); \
111 test##prec(next(0.0, INFINITY), eps, ex_under); \
112 test##prec(next(-0.0, -INFINITY), -eps, ex_under)

Completed in 150 milliseconds

12