HomeSort by relevance Sort by last modified time
    Searched refs:epsilon (Results 1 - 18 of 18) sorted by null

  /external/stlport/test/unit/
math_aux.h 21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon();
24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon();
num_put_get_test.cpp 58 float epsilon = numeric_limits<float>::epsilon(); local
59 return val <= ref + epsilon && val >= ref - epsilon;
64 double epsilon = numeric_limits<double>::epsilon(); local
65 return val <= ref + epsilon && val >= ref - epsilon;
    [all...]
limits_test.cpp 134 CHECK_COND(lim::epsilon() > 0);
  /dalvik/tests/053-wait-some/src/
Main.java 46 long epsilon = delay / 10; local
47 if (epsilon > 50) {
48 epsilon = 50;
51 long min = delay - epsilon;
52 long max = delay + epsilon;
  /external/webkit/WebCore/platform/graphics/
UnitBezier.h 63 double solveCurveX(double x, double epsilon)
75 if (fabs (x2) < epsilon)
95 if (fabs(x2 - x) < epsilon)
108 double solve(double x, double epsilon)
110 return sampleCurveY(solveCurveX(x, epsilon));
  /external/icu4c/i18n/
astro.h 654 double periodDays, double epsilon, UBool next);
665 double epsilon);
astro.cpp 605 while (uprv_fabs(delta) > 1e-5); // epsilon = 1e-5 rad
    [all...]
  /external/srec/srec/crec/
comp_stats.c 57 init_cs_clock(&c.epsilon);
90 print_cs_clock(&cs->epsilon, cs->total_time, fp, " Epsilon", "FSM_Nodes");
srec.c 814 /*handles epsilon transitions (used for word boundaries). Epsilons come from active
819 epsilon, create a word token, put it in the path, and remember it in a
861 case we need to re-use it. All N epsilon updates, and all M
893 /* consider only epsilon transitions */
897 /* can't loop to yourself on epsilon! */
    [all...]
  /external/bison/lib/
hash.c 491 is 11 (due to next_prime's algorithm), so an epsilon of 0.1
493 float epsilon = 0.1f; local
495 if (epsilon < tuning->growth_threshold
496 && tuning->growth_threshold < 1 - epsilon
497 && 1 + epsilon < tuning->growth_factor
499 && tuning->shrink_threshold + epsilon < tuning->shrink_factor
501 && tuning->shrink_threshold + epsilon < tuning->growth_threshold)
  /external/srec/srec/include/
comp_stats.h 84 CS_CLOCK epsilon; member in struct:COMP_STATS_t
  /external/stlport/stlport/stl/
_limits.h 90 static __number _STLP_CALL epsilon() _STLP_NOTHROW { return __number(); }
420 static float _STLP_CALL epsilon() _STLP_NOTHROW { return FLT_EPSILON; }
451 static double _STLP_CALL epsilon() _STLP_NOTHROW { return DBL_EPSILON; }
482 static long double _STLP_CALL epsilon() _STLP_NOTHROW { return LDBL_EPSILON; }
  /external/webkit/JavaScriptCore/runtime/
NumberPrototype.cpp 187 const double epsilon = 0.001; // TODO: guessed. base on radix ?
188 bool hasFractionalPart = (d < -epsilon || d > epsilon);
196 } while ((d < -epsilon || d > epsilon) && p < lastCharInString);
  /external/bluetooth/glib/gobject/
gparamspecs.c 525 fspec->epsilon = G_FLOAT_EPSILON;
552 gfloat epsilon = G_PARAM_SPEC_FLOAT (pspec)->epsilon; local
555 return - (value2->data[0].v_float - value1->data[0].v_float > epsilon);
557 return value1->data[0].v_float - value2->data[0].v_float > epsilon;
568 dspec->epsilon = G_DOUBLE_EPSILON;
595 gdouble epsilon = G_PARAM_SPEC_DOUBLE (pspec)->epsilon; local
598 return - (value2->data[0].v_double - value1->data[0].v_double > epsilon);
600 return value1->data[0].v_double - value2->data[0].v_double > epsilon;
    [all...]
gparamspecs.h 777 * @epsilon: values closer than @epsilon will be considered identical
789 gfloat epsilon; member in struct:_GParamSpecFloat
797 * @epsilon: values closer than @epsilon will be considered identical
809 gdouble epsilon; member in struct:_GParamSpecDouble
  /external/webkit/WebCore/rendering/
SVGRenderTreeAsText.cpp 121 double epsilon = 0.0001; local
124 return fabs(val - dval) > epsilon;
AutoTableLayout.cpp 255 // We substitute 0 percent by (epsilon / percentScaleFactor) percent in two places below to avoid division by zero.
257 const int epsilon = 1; local
266 float pw = static_cast<float>(m_layoutStruct[i].effMaxWidth) * 100 * percentScaleFactor / max(percent, epsilon);
275 maxNonPercent = maxNonPercent * 100 * percentScaleFactor / max(remainingPercent, epsilon);
  /external/webkit/WebKit/mac/WebView/
WebHTMLView.mm     [all...]

Completed in 4560 milliseconds