| /dragonfly/contrib/mpfr/src/ |
| HD | eint.c | 38 mpfr_t eps; /* dynamic (absolute) error bound on t */ in mpfr_eint_aux() local 61 MPFR_GROUP_INIT_3 (group, 31, eps, erru, errs); in mpfr_eint_aux() 77 mpfr_set_ui (eps, 0, MPFR_RNDN); /* eps[0] = 0 */ in mpfr_eint_aux() 86 mpfr_mul_2ui (eps, eps, w - 1, MPFR_RNDU); in mpfr_eint_aux() 87 mpfr_add_z (eps, eps, t, MPFR_RNDU); in mpfr_eint_aux() 89 mpfr_mul_2si (eps, eps, sizeinbase - (w - 1) + e, MPFR_RNDU); in mpfr_eint_aux() 90 mpfr_div_ui (eps, eps, k, MPFR_RNDU); in mpfr_eint_aux() 91 mpfr_add_ui (eps, eps, 1, MPFR_RNDU); in mpfr_eint_aux() 101 mpfr_div_ui (erru, eps, k, MPFR_RNDU); in mpfr_eint_aux() 116 mpfr_add_z (eps, eps, t, MPFR_RNDU); in mpfr_eint_aux() [all …]
|
| HD | zeta.c | 294 double sd, eps, m1, c; in mpfr_zeta() local 411 eps = __gmpfr_ceil_exp2 (- (double) precz - 14.0); in mpfr_zeta() 412 m1 = 1.0 + MAX(1.0 / eps, 2.0 * sd) * (1.0 + eps); in mpfr_zeta() 413 c = (1.0 + eps) * (1.0 + eps * MAX(8.0, m1)); in mpfr_zeta()
|
| /dragonfly/contrib/flex/src/ |
| HD | nfa.c | 379 int eps; in mkbranch() local 387 eps = mkstate (SYM_EPSILON); in mkbranch() 389 mkxtion (eps, first); in mkbranch() 390 mkxtion (eps, second); in mkbranch() 392 return eps; in mkbranch() 426 int eps; in mkopt() local 429 eps = mkstate (SYM_EPSILON); in mkopt() 430 mach = link_machines (mach, eps); in mkopt() 437 eps = mkstate (SYM_EPSILON); in mkopt() 438 mach = link_machines (eps, mach); in mkopt() [all …]
|
| HD | parse.y | 69 int pat, scnum, eps, headcnt, trailcnt, lastchar, i, rulelen; variable 476 eps = mkstate( SYM_EPSILON ); 478 link_machines( eps, mkstate( '\n' ) ) );
|
| HD | parse.c | 101 int pat, scnum, eps, headcnt, trailcnt, lastchar, i, rulelen; variable 1909 eps = mkstate( SYM_EPSILON ); in yyparse() 1911 link_machines( eps, mkstate( '\n' ) ) ); in yyparse()
|
| /dragonfly/sbin/devd/ |
| HD | devd.h | 37 struct eps; 44 struct event_proc *add_to_event_proc(struct event_proc *, struct eps *); 45 struct eps *new_match(const char *, const char *); 46 struct eps *new_media(const char *, const char *); 47 struct eps *new_action(const char *);
|
| HD | devd.hh | 66 struct eps struct 69 virtual ~eps() {} in ~eps() argument 82 class match : public eps 100 class media : public eps 115 class action : public eps 133 void add(eps *); 138 std::vector<eps *> _epsvec;
|
| HD | devd.cc | 174 event_proc::add(eps *eps) in add() argument 176 _epsvec.push_back(eps); in add() 182 vector<eps *>::const_iterator i; in matches() 193 vector<eps *>::const_iterator i; in run() 1089 add_to_event_proc(event_proc *ep, eps *eps) in add_to_event_proc() argument 1093 ep->add(eps); in add_to_event_proc() 1097 eps * 1100 eps *e = new action(cmd); in new_action() 1105 eps * 1108 eps *e = new match(cfg, var, re); in new_match() [all …]
|
| HD | parse.y | 42 struct eps *eps; /* EventProcStatement */ member 54 %type <eps> match_or_action match action
|
| /dragonfly/contrib/gdtoa/ |
| HD | dtoa.c | 127 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) *= 10.; 409 dval(&eps) *= tens[ilim-1]; [all …]
|
| HD | gdtoa.c | 163 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) *= 10.; 415 dval(&eps) *= tens[ilim-1]; [all …]
|
| /dragonfly/lib/libc/rpc/ |
| HD | auth_time.c | 117 free_eps(endpoint eps[], int num) in free_eps() argument 122 free(eps[i].uaddr); in free_eps() 123 free(eps[i].proto); in free_eps() 124 free(eps[i].family); in free_eps() 144 endpoint eps[], /* array of endpoints */ in get_server() argument 172 for (i = 0, ep = eps; (he->h_addr_list[i] != NULL) && (num_ep < maxep); in get_server() 182 free_eps(eps, num_ep + 1); in get_server() 197 free_eps(eps, num_ep + 1); in get_server() 204 srv->ep.ep_val = eps; in get_server()
|
| /dragonfly/usr.bin/calendar/ |
| HD | moon.c | 739 const double eps = 30.0 / 3600 / 24; /* accuracy of 30 seconds */ in moonrise() local 749 } while (fabs(a - b) >= eps); in moonrise() 787 const double eps = 30.0 / 3600 / 24; /* accuracy of 30 seconds */ in moonset() local 797 } while (fabs(a - b) >= eps); in moonset() 826 double eps = 1e-5; in show_moon_info() local 831 if (fabs(phi) < eps || fabs(phi - 360) < eps) in show_moon_info() 833 else if (fabs(phi - 90) < eps) in show_moon_info() 835 else if (fabs(phi - 180) < eps) in show_moon_info() 837 else if (fabs(phi - 270) < eps) in show_moon_info()
|
| HD | utils.c | 76 static const double eps = 1e-6; in invert_angular() local 85 } while (fabs(a-b) >= eps); in invert_angular()
|
| HD | utils.h | 176 static const double eps = 1e-6; in mod3_f() local 178 if (fabs(a - b) < eps) in mod3_f()
|
| HD | sun.c | 295 const double eps = 30.0 / 3600 / 24; /* accuracy of 30 seconds */ in depression_moment() local 300 else if (fabs(t - tapprox) < eps) in depression_moment()
|
| /dragonfly/tools/regression/lib/libm/ |
| HD | test-next.c | 109 #define stest(next, eps, prec) \ in main() argument 110 test##prec(next(-0.0, 42.0), eps, ex_under); \ in main() 111 test##prec(next(0.0, -42.0), -eps, ex_under); \ in main() 112 test##prec(next(0.0, INFINITY), eps, ex_under); \ in main() 113 test##prec(next(-0.0, -INFINITY), -eps, ex_under) in main()
|
| /dragonfly/usr.bin/evtranalyze/ |
| HD | svg.c | 92 static double eps = 0.0001; in svg_transform_print() local 102 if ((fabs(tf->tx) > eps) && (fabs(tf->ty) > eps)) { in svg_transform_print() 110 if ((fabs(tf->sx - 1) > eps) && (fabs(tf->sy - 1) > eps)) { in svg_transform_print() 118 if (fabs(tf->rot) > eps) { in svg_transform_print()
|
| /dragonfly/games/hack/ |
| HD | hack.invent.c | 933 long eps = 0; in countgold() local 935 eps = rnd((int) (u.ugold / 100 + 1)); in countgold() 937 u.ugold + eps); in countgold()
|
| /dragonfly/contrib/file/magic/Magdir/ |
| HD | fonts | 214 # also .eps found like AA070GEP.EPS AI360GEP.EPS
|
| HD | msdos | 1417 !:mime image/x-eps
|
| /dragonfly/contrib/gdb-7/ |
| HD | README.DELETED | 581 gdb/doc/stack_frame.eps
|
| /dragonfly/contrib/tcsh-6/ |
| HD | complete.tcsh | 1170 complete {gv,ghostview} 'n/*/f:*.{ps,eps,epsi}/'
|