OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ULP
(Results
1 - 4
of
4
) sorted by null
/bionic/tests/
math_data_test.h
141
// Based on the existing googletest implementation, which uses a fixed 4
ulp
bound.
149
template <size_t
ULP
, typename T>
155
if (!isnan(expected) && !isnan(actual) && UlpDistance(expected, actual) <=
ULP
) {
165
// and asserting that the result is within
ULP
ulps of the expected value.
167
template <size_t
ULP
, typename RT, typename T, size_t N>
170
FpUlpEq<
ULP
, RT> predicate;
178
// and asserting that the result is within
ULP
ulps of the expected value.
180
template <size_t
ULP
, typename T, size_t N>
189
// and asserting that the result is within
ULP
ulps of the expected value.
191
template <size_t
ULP
, typename T, size_t N
[
all
...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java
265
/** The {@code FastMath.
ulp
} method wrapped as a {@link ComposableFunction}. */
266
public static final ComposableFunction
ULP
= new ComposableFunction() {
270
return FastMath.
ulp
(d);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUCodeGenPrepare.cpp
425
float
ULP
= FPOp->getFPAccuracy();
426
if (
ULP
< 2.5f)
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java
716
return mapToSelf(ComposableFunction.
ULP
);
Completed in 2454 milliseconds