HomeSort by relevance Sort by last modified time
    Searched defs:EPSILON (Results 1 - 18 of 18) 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)
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
MatrixUtilsTests.java 28 private static final float EPSILON = 0.00001f;
31 assertEqualsFloat(f0, f1, 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/chromium_org/ui/gfx/
interpolated_transform.cc 18 static const double EPSILON = 1e-6;
22 return remainder < EPSILON || 90.0 - remainder < EPSILON;
26 return fabs(value) < EPSILON;
  /external/libvorbis/lib/
lsp.c 309 #define EPSILON 10e-7
337 if(denom<EPSILON)denom=EPSILON;
340 if(denom>-(EPSILON))denom=-(EPSILON);
  /frameworks/base/libs/hwui/
Matrix.cpp 36 static const float EPSILON = 0.0000001f;
72 return fabs(f) <= 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;
  /external/chromium_org/third_party/opus/src/celt/
arch.h 102 #define EPSILON 1
142 #define EPSILON 1e-15f
  /external/pixman/pixman/
pixman-matrix.c 659 pixman_fixed_t epsilon)
666 return t <= epsilon;
669 #define EPSILON (pixman_fixed_t) (2)
671 #define IS_SAME(a, b) (within_epsilon (a, b, EPSILON))
672 #define IS_ZERO(a) (within_epsilon (a, 0, EPSILON))
673 #define IS_ONE(a) (within_epsilon (a, F (1), EPSILON))
675 (within_epsilon (a, F (1), EPSILON) || \
676 within_epsilon (a, F (-1), EPSILON) || \
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 74 private static final float EPSILON = 0.001f;
392 if (t >= 1.f - EPSILON) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeEffect.java 82 private static final float EPSILON = 0.001f;
359 if (t >= 1.f - EPSILON) {
  /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 768 milliseconds