OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Epsilon
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/Frontend/
InitPreprocessor.cpp
125
const char *DenormMin, *
Epsilon
, *Max, *Min;
131
Epsilon
= PickFP(Sem, "1.19209290e-7F", "2.2204460492503131e-16",
157
Builder.defineMacro(DefPrefix + "EPSILON__", llvm::Twine(
Epsilon
));
/external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp
108
const float
Epsilon
= 5.0e-4f;
116
if (val <
Epsilon
&& val > -
Epsilon
)
123
return (v0 - v1).diagonalLengthSquared() <
Epsilon
*
Epsilon
;
128
return (v0 - v1).lengthSquared() <
Epsilon
*
Epsilon
;
133
return fabsf(f0 - f1) <
Epsilon
;
Completed in 47 milliseconds