/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
mac_greek.py | 230 u'\u0395' # 0xB6 -> GREEK CAPITAL LETTER EPSILON 254 u'\u0388' # 0xCE -> GREEK CAPITAL LETTER EPSILON WITH TONOS 267 u'\u03ad' # 0xDB -> GREEK SMALL LETTER EPSILON WITH TONOS 277 u'\u03b5' # 0xE5 -> GREEK SMALL LETTER EPSILON
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
ANTLR.g | 84 EPSILON; 696 | // epsilon alt 697 -> ^(ALT[$start,"ALT"] EPSILON[input.LT(-1),"epsilon"] EOA[input.LT(-1),"<end-of-alt>"]) 926 -> {!stream_rewrite_element.hasNext()}? ^(ALT[LT(1),"ALT"] EPSILON["epsilon"] EOA["<end-of-alt>"]) 930 -> ^(ALT[LT(1),"ALT"] EPSILON["epsilon"] EOA["<end-of-alt>"])
|
TreeToNFAConverter.g | 134 Transition e = new Transition( Label.EPSILON, n ); 138 Transition followEdge = new Transition( Label.EPSILON, following ); 245 start.addTransition(new Transition(Label.EPSILON, g.left)); 259 g.right.addTransition(new Transition(Label.EPSILON,end)); 373 | EPSILON {$g = factory.build_Epsilon();}
|
/external/eigen/Eigen/src/SparseCore/ |
CompressedStorage.h | 210 void prune(const Scalar& reference, const RealScalar& epsilon = NumTraits<RealScalar>::dummy_precision()) 216 if (!internal::isMuchSmallerThan(value(i), reference, epsilon))
|
/external/eigen/unsupported/Eigen/ |
MPRealSupport | 87 static inline Real epsilon (long Precision = mpfr::mpreal::get_default_prec()) { return mpfr::machine_epsilon(Precision); } 88 static inline Real epsilon (const Real& x) { return mpfr::machine_epsilon(x); }
|
/external/libopus/celt/ |
arch.h | 121 #define EPSILON 1 188 #define EPSILON 1e-15f
|
/external/opencv/cv/src/ |
cvcornersubpix.cpp | 102 eps = criteria.epsilon; 106 eps = criteria.epsilon;
|
/external/tensorflow/tensorflow/compiler/tests/ |
adam_test.py | 41 epsilon=1e-8): 47 param_t = param - alpha_t * m_t / (np.sqrt(v_t) + epsilon)
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
ir_emission_utils.h | 42 // - epsilon and feature_index are proper operands, at the end of the operands 45 // 1/sqrt(variance + epsilon) in place of plain variance.
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
quaternion.inl | 228 if(cosTheta < T(-1) + epsilon<T>()) 236 if(length2(rotationAxis) < epsilon<T>()) // bad luck, they were parallel, try again!
|
/prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/ |
quaternion.inl | 228 if(cosTheta < T(-1) + epsilon<T>()) 236 if(length2(rotationAxis) < epsilon<T>()) // bad luck, they were parallel, try again!
|
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/ |
esextcTessellationShaderInvariance.cpp | 1542 const glw::GLfloat epsilon = 1e-4f; local 2110 const float epsilon = 1e-5f; local 2579 const float epsilon = 1e-5f; local 2843 const float epsilon = 1e-5f; local [all...] |
esextcTessellationShaderTCTE.cpp | 912 const float epsilon = 1e-5f; local 938 if (de::abs(data - expected_value) > epsilon) 1713 const float epsilon = (float)1e-5; local 2974 const float epsilon = (float)1e-5; local 3649 const float epsilon = (float)1e-5; local [all...] |
/external/tensorflow/tensorflow/python/kernel_tests/ |
spacetobatch_op_test.py | 500 epsilon = 1e-5 507 delta=epsilon) 509 self.assertAllClose(x_jacob_t, x_jacob_n, rtol=1e-2, atol=epsilon) 557 epsilon = 1e-5 564 delta=epsilon) 566 self.assertAllClose(x_jacob_t, x_jacob_n, rtol=1e-2, atol=epsilon)
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
cuda_dnn.h | 206 const dnn::BatchDescriptor& scale_offset_desc, const double epsilon, 219 const dnn::BatchDescriptor& scale_offset_desc, const double epsilon, 231 const dnn::BatchDescriptor& scale_offset_desc, const double epsilon, 240 const dnn::BatchDescriptor& scale_offset_desc, const double epsilon, [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/ |
hypergeometric.tcc | 80 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 119 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 268 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 303 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 437 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 734 const _Tp __toler = _Tp(1000) * std::numeric_limits<_Tp>::epsilon();
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/ |
hypergeometric.tcc | 80 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 119 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 268 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 303 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 437 const _Tp __eps = std::numeric_limits<_Tp>::epsilon(); 734 const _Tp __toler = _Tp(1000) * std::numeric_limits<_Tp>::epsilon();
|
/external/ImageMagick/MagickCore/ |
threshold.c | [all...] |
/external/tensorflow/tensorflow/python/keras/_impl/keras/ |
backend.py | 90 # Epsilon fuzz factor used throughout the codebase. 114 @tf_export('keras.backend.epsilon') 115 def epsilon(): function 123 >>> keras.backend.epsilon() 135 value: float. New value of epsilon. 140 >>> K.epsilon() 143 >>> K.epsilon() [all...] |
/external/deqp/external/openglcts/modules/gl/ |
gl4cTextureViewTests.cpp | 3141 const float epsilon = 1e-5f; local 8431 const int epsilon = 1; local 9767 const unsigned char epsilon = 1; local [all...] |
/external/tensorflow/tensorflow/python/ops/ |
nn_impl.py | 333 def l2_normalize(x, axis=None, epsilon=1e-12, name=None, dim=None): 338 output = x / sqrt(max(sum(x**2), epsilon)) 347 epsilon: A lower bound value for the norm. Will use `sqrt(epsilon)` as the 348 divisor if `norm < sqrt(epsilon)`. 359 x_inv_norm = math_ops.rsqrt(math_ops.maximum(square_sum, epsilon)) [all...] |
/external/eigen/test/ |
packetmath.cpp | 376 data1[1] = std::numeric_limits<Scalar>::epsilon(); 380 VERIFY_IS_EQUAL(std::exp(std::numeric_limits<Scalar>::epsilon()), data2[1]); 382 data1[0] = -std::numeric_limits<Scalar>::epsilon(); 385 VERIFY_IS_EQUAL(std::exp(-std::numeric_limits<Scalar>::epsilon()), data2[0]); 450 data1[1] = std::numeric_limits<Scalar>::epsilon(); 454 VERIFY_IS_EQUAL(std::log(std::numeric_limits<Scalar>::epsilon()), data2[1]); 456 data1[0] = -std::numeric_limits<Scalar>::epsilon();
|
/external/tensorflow/tensorflow/python/keras/_impl/keras/applications/ |
nasnet.py | 235 axis=channel_dim, momentum=0.9997, epsilon=1e-3, name='stem_bn1')( 498 epsilon=1e-3, 513 epsilon=1e-3, 583 epsilon=1e-3, 601 epsilon=1e-3, 636 epsilon=1e-3, 719 epsilon=1e-3,
|
/frameworks/base/libs/hwui/ |
SpotShadow.cpp | 66 static const float EPSILON = 1e-7; 224 return (bx - ax) * (cy - ay) - (by - ay) * (cx - ax) > EPSILON; 630 // Allow some epsilon here since the later ray intersection did allow for some small 634 return a >= -EPSILON && b >= -EPSILON; 636 return a <= EPSILON && b <= EPSILON; 772 // Normalize these vectors such that we can use epsilon comparison after [all...] |
/device/google/contexthub/firmware/os/algos/common/math/ |
mat.c | 35 #define EPSILON 1E-5f 334 if (fabsf(p) < EPSILON) { 385 if (sum < EPSILON) { 485 if (fabsf(LU->elem[k][k]) < EPSILON) { 650 if (L[i * s_n + i] < EPSILON) {
|