HomeSort by: relevance | last modified time | path
    Searched defs:tol (Results 1 - 4 of 4) sorted by relevancy

  /src/lib/libc/gdtoa/
strtodg.c 337 double adj0, tol; local
1018 tol = dval(&adj) * 5e-16; /* > max rel error */
1020 if (dval(&adj) < -tol) {
1021 if (adj0 > tol) {
1026 else if (dval(&adj) > tol && adj0 < 1. - tol) {
  /src/sys/arch/mac68k/dev/
zs.c 505 int src, rate0, rate1, err, tol; local
511 tol = ZS_TOLERANCE;
515 * the best. A source has to match BETTER than tol to be chosen.
529 if (err < tol) {
530 tol = err;
568 if (err < tol) {
569 tol = err;
  /src/sys/arch/macppc/dev/
zs.c 569 int src, rate0, rate1, err, tol; local
575 tol = ZS_TOLERANCE;
579 * the best. A source has to match BETTER than tol to be chosen.
593 if (err < tol) {
594 tol = err;
632 if (err < tol) {
633 tol = err;
  /src/external/bsd/ntp/dist/sntp/unity/
unity.c 620 _UF diff, tol; local
640 tol = UNITY_FLOAT_PRECISION * *ptr_expected;
641 if (tol < 0.0f)
642 tol = 0.0f - tol;
645 if ((diff * 0.0f != 0.0f) || (diff > tol))
781 _UD diff, tol; local
801 tol = UNITY_DOUBLE_PRECISION * *ptr_expected;
802 if (tol < 0.0)
803 tol = 0.0 - tol
    [all...]

Completed in 33 milliseconds