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

  /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/srec/srec/include/
comp_stats.h 84 CS_CLOCK epsilon; member in struct:COMP_STATS_t
  /external/stlport/test/unit/
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...]
  /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);
  /ndk/tests/device/test-gnustl-full/unit/
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...]
  /ndk/tests/device/test-stlport/unit/
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...]
  /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/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

Completed in 250 milliseconds