HomeSort by relevance Sort by last modified time
    Searched full:epsilon (Results 226 - 250 of 1186) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/
shared.rsh 80 /* Absolute epsilon used for floats. Value is similar to float.h. */
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
shared.rsh 77 /* Absolute epsilon used for floats. Value is similar to float.h. */
  /libcore/dom/src/test/resources/
hc_staff.svg 9 <!ENTITY epsilon "&#949;">
hc_staff.xhtml 9 <!ENTITY epsilon "&#949;">
hc_staff.xml 9 <!ENTITY epsilon "&#949;">
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/
vector_angle.inl 50 //! \todo epsilon is hard coded to 0.01
  /frameworks/native/libs/math/tests/
mat_test.cpp 374 #define TEST_MATRIX_INVERSE(MATRIX, EPSILON) \
382 EXPECT_NEAR(ident1[row][col], IDENTITY[row][col], EPSILON); \
420 TEST_MATRIX_INVERSE(m4, 20.0 * std::numeric_limits<TypeParam>::epsilon());
421 TEST_MATRIX_INVERSE(m5, 20.0 * std::numeric_limits<TypeParam>::epsilon());
453 TEST_MATRIX_INVERSE(m4, 20.0 * std::numeric_limits<TypeParam>::epsilon());
454 TEST_MATRIX_INVERSE(m5, 20.0 * std::numeric_limits<TypeParam>::epsilon());
477 TEST_MATRIX_INVERSE(m3, 20.0 * std::numeric_limits<TypeParam>::epsilon());
478 TEST_MATRIX_INVERSE(m4, 20.0 * std::numeric_limits<TypeParam>::epsilon());
543 static constexpr T value_eps = T(100) * std::numeric_limits<T>::epsilon();
635 TypeParam(1000) * std::numeric_limits<TypeParam>::epsilon();
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
ieee754.txt 12 is small than epsilon.
88 >>> (1.0 + FI.epsilon) * NAN
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRv3Tree.g 124 | ^(ALT EPSILON EOA)
195 | ^(ALT EPSILON EOA)
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAConfiguration.java 77 /** Lots of NFA states have only epsilon edges (1 or 2). We can
83 * has exactly one transition and it's an atom (not epsilon etc...).
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
HTMLEntities.properties 140 # Epsilon 917
164 # epsilon 949
  /external/deqp/external/openglcts/modules/glesext/tessellation_shader/
esextcTessellationShaderQuads.hpp 67 * locations. Assume epsilon 1e-5. A single triangle should be drawn.
138 * Assume epsilon 1e-5.
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktSampleVerifierUtil.hpp 109 bool isEqualRelEpsilon (const tcu::Vector<float, Size>& a, const tcu::Vector<float, Size>& b, const float epsilon)
113 if (!isEqualRelEpsilon(a[compNdx], b[compNdx], epsilon))
  /external/devlib/devlib/derived/
fps.py 210 epsilon = 0.0001
211 func = lambda x: (abs(x - 1.0) > epsilon) and 1 or 0
  /external/eigen/Eigen/src/SparseCore/
SparseProduct.h 22 * C = (A*B).pruned(ref,epsilon);
158 abs(xpr.reference())*xpr.epsilon());
  /external/eigen/doc/
CustomizingEigen_CustomScalar.dox 30 : NumTraits<double> // permits to get the epsilon, dummy_precision, lowest, highest functions
76 static inline Real epsilon() { return 0; }
  /external/eigen/test/
boostmultiprec.cpp 149 std::cout << "NumTraits<Real>::epsilon() = " << NumTraits<Real>::epsilon() << std::endl;
umeyama.cpp 117 VERIFY(error < Scalar(40)*std::numeric_limits<Scalar>::epsilon());
155 VERIFY(error < Scalar(16)*std::numeric_limits<Scalar>::epsilon());
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
RateLimiterTest.java 49 private static final double EPSILON = 1e-8;
128 assertEquals(0.0, limiter.acquire(), EPSILON); // R0.00
130 assertEquals(0.0, limiter.acquire(), EPSILON); // R0.00, ...which is granted immediately
131 assertEquals(0.2, limiter.acquire(), EPSILON); // R0.20
137 assertEquals(0.0, limiter.acquire(), EPSILON);
139 assertEquals(0.0, limiter.acquire(), EPSILON);
140 assertEquals(0.0, limiter.acquire(), EPSILON);
141 assertEquals(0.2, limiter.acquire(), EPSILON);
  /external/libmojo/third_party/markupsafe/
_constants.py 31 'Epsilon': 917,
117 'epsilon': 949,
  /external/protobuf/src/google/protobuf/stubs/
mathlimits.cc 82 // This causes a problem with epsilon (eps).
86 // D-D format: 1.0 + e = 1.000...0001 // epsilon can be very small
  /external/python/cpython2/Lib/test/
ieee754.txt 12 is small than epsilon.
88 >>> (1.0 + FI.epsilon) * NAN
  /external/python/cpython3/Lib/test/
ieee754.txt 12 is small than epsilon.
88 >>> (1.0 + FI.epsilon) * NAN
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUMathInstr.td 71 // Epsilon addition
89 // Epsilon addition
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
training_ops.cc 200 errors::InvalidArgument("epsilon is not a scalar: ",
221 xla::ComputationDataHandle epsilon = ctx->Input(8); variable
227 // variable <- variable - alpha * m_t / (sqrt(v_t) + epsilon)
240 b->Sub(var, b->Div(b->Mul(m, alpha), b->Add(b->Pow(v, half), epsilon)));
282 errors::InvalidArgument("epsilon is not a scalar: ",
303 xla::ComputationDataHandle epsilon = ctx->Input(6); variable
307 // mom <- momentum * mom_{t-1} + lr * grad / sqrt(ms + epsilon)
330 b->Pow(b->Add(new_ms, epsilon),

Completed in 1802 milliseconds

1 2 3 4 5 6 7 8 91011>>