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

  /external/opencv/cvaux/src/
_cvvm.h 58 /* Epsilon and real zero */
59 #define EPSILON 1.e-4
60 //#define REAL_ZERO(x) ( (x) < EPSILON && (x) > -EPSILON)
  /external/replicaisland/src/com/replica/replicaisland/
Utils.java 21 private static final float EPSILON = 0.0001f;
24 return close(a, b, EPSILON);
27 public final static boolean close(float a, float b, float epsilon) {
28 return Math.abs(a - b) < epsilon;
  /external/srec/srec/clib/
jacobi.c 32 #undef EPSILON
33 #define EPSILON 0.00000001
91 if (sum < EPSILON) /* normal convergence */
115 if ((iter >= 4) && (g < EPSILON*fabs(d[i]))
116 && (g < EPSILON*fabs(d[j])))
124 if (g < EPSILON*fabs(h))
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Label.java 36 * tokens. It can be an epsilon transition. It can be a semantic predicate
37 * (which assumes an epsilon transition) or a tree of predicates (in a DFA).
45 public static final int EPSILON = -5;
47 public static final String EPSILON_STR = "<EPSILON>";
49 /** label is a semantic predicate; implies label is epsilon also */
75 /** We have labels like EPSILON that are below 0; it's hard to
194 return label==EPSILON;
283 // labels must be the same even if epsilon or set or sempred etc...
  /external/libvorbis/lib/
lsp.c 309 #define EPSILON 10e-7
337 if(denom<EPSILON)denom=EPSILON;
340 if(denom>-(EPSILON))denom=-(EPSILON);
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
StochasticLinearRankerWithPrior.java 27 private final float EPSILON = 0.0001f;
141 mAutoAlpha = (mPriorRankerPerf + EPSILON) / (mUserRankerPerf + mPriorRankerPerf + EPSILON);
  /frameworks/native/services/surfaceflinger/
Transform.cpp 47 static const float EPSILON = 0.0f;
50 return fabs(f) <= EPSILON;
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 72 private static final float EPSILON = 0.001f;
390 if (t >= 1.f - EPSILON) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeEffect.java 80 private static final float EPSILON = 0.001f;
357 if (t >= 1.f - EPSILON) {
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
ShaderProgram.cpp 43 #define EPSILON 0.00001f
    [all...]
  /frameworks/base/services/input/tests/
InputReader_test.cpp 34 static const float EPSILON = 0.001f;
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 

Completed in 475 milliseconds