OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:epsilon
(Results
526 - 550
of
1186
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeEffect.java
82
private static final float
EPSILON
= 0.001f;
359
if (t >= 1.f -
EPSILON
) {
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tgmath.h
397
/* Return X +
epsilon
if X < Y, X -
epsilon
if X > Y. */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
modified_bessel_func.tcc
105
const _Tp __eps = std::numeric_limits<_Tp>::
epsilon
();
106
const _Tp __fp_min = _Tp(10) * 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/
modified_bessel_func.tcc
105
const _Tp __eps = std::numeric_limits<_Tp>::
epsilon
();
106
const _Tp __fp_min = _Tp(10) * std::numeric_limits<_Tp>::
epsilon
();
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
automata.c
283
/* finds all the nodes that can be reached by
epsilon
transitions
dlg.h
74
set label; /* one arc always labelled with
epsilon
*/
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
LeftRecursiveRuleWalker.g
259
|
EPSILON
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DecisionProbe.java
764
* between the two ignoring
epsilon
. Limit your scan to a set of states
798
labels.add(new Label(Label.
EPSILON
)); // indicate no input found
845
// nondeterministically backtrack down
epsilon
edges
[
all
...]
/external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h
496
const RealScalar precision = RealScalar(2)*NumTraits<RealScalar>::
epsilon
();
651
if((eivals(2)-eivals(0))<=Eigen::NumTraits<Scalar>::
epsilon
())
679
if(d0<=2*Eigen::NumTraits<Scalar>::
epsilon
()*d1)
759
if((eivals(1)-eivals(0))<=abs(eivals(1))*Eigen::NumTraits<Scalar>::
epsilon
())
[
all
...]
/external/eigen/Eigen/src/Geometry/
AngleAxis.h
175
if(n<NumTraits<Scalar>::
epsilon
())
/external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h
125
* and NumTraits<Scalar>::
epsilon
() for the tolerance.
LeastSquareConjugateGradient.h
126
* and NumTraits<Scalar>::
epsilon
() for the tolerance.
/external/eigen/bench/
quat_slerp.cpp
48
static const Scalar one = Scalar(1) -
epsilon
<Scalar>();
/external/libmojo/ui/gfx/geometry/
rect_f.cc
215
static const float kEpsilon = std::numeric_limits<float>::
epsilon
();
/external/libopus/celt/x86/
vq_sse2.c
99
if (!(sum >
EPSILON
&& sum < 64))
/external/lmfit/
CHANGELOG
103
- long message for degenerate case now suggests increasing
epsilon
/external/opencv/ml/src/
mlem.cpp
590
termcrit.
epsilon
*= termcrit.
epsilon
;
728
if( max_dist < termcrit.
epsilon
)
971
if( fabs( (_log_likelihood - prev_log_likelihood) / prev_log_likelihood ) < params.term_crit.
epsilon
)
[
all
...]
/external/skia/src/core/
SkBitmapProcState.h
217
// SkFixed
epsilon
bias to ensure inverse-mapped bitmap coordinates are rounded
/external/skia/src/pathops/
SkPathOpsPoint.h
61
// uses ulps
epsilon
== 16
/external/skqp/src/core/
SkBitmapProcState.h
217
// SkFixed
epsilon
bias to ensure inverse-mapped bitmap coordinates are rounded
/external/skqp/src/pathops/
SkPathOpsPoint.h
61
// uses ulps
epsilon
== 16
/external/tensorflow/tensorflow/compiler/xla/service/
hlo.proto
105
float
epsilon
= 24;
/external/tensorflow/tensorflow/contrib/losses/python/losses/
loss_ops.py
439
def log_loss(predictions, labels=None, weights=1.0,
epsilon
=1e-7, scope=None):
455
epsilon
: A small increment to add to avoid taking a log of zero.
471
labels, math_ops.log(predictions +
epsilon
)) - math_ops.multiply(
472
(1 - labels), math_ops.log(1 - predictions +
epsilon
))
/external/tensorflow/tensorflow/contrib/quantize/python/
fold_batch_norms.py
83
# new weights = old weights * gamma / sqrt(variance +
epsilon
)
84
# new biases = -mean * gamma / sqrt(variance +
epsilon
) + beta
86
match.variance_tensor + match.bn_op.get_attr('
epsilon
'))
197
batch_epsilon_tensor = bn_op.get_attr('
epsilon
')
[
all
...]
/external/tensorflow/tensorflow/core/kernels/
matrix_solve_ls_op_impl.h
96
// 1 / cond(matrix) > sqrt(std::numeric_limits<Scalar>::
epsilon
()).
Completed in 1058 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>