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
119
// Based on the existing googletest implementation, which uses a fixed 4
ulp
bound.
127
template <size_t
ULP
, typename T>
133
if (!isnan(expected) && !isnan(actual) && UlpDistance(expected, actual) <=
ULP
) {
149
// and asserting that the result is within
ULP
ulps of the expected value.
151
template <size_t
ULP
, typename RT, typename T, size_t N>
154
FpUlpEq<
ULP
, RT> predicate;
162
// and asserting that the result is within
ULP
ulps of the expected value.
164
template <size_t
ULP
, typename T, size_t N>
173
// and asserting that the result is within
ULP
ulps of the expected value.
175
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/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java
716
return mapToSelf(ComposableFunction.
ULP
);
/external/v8/src/third_party/fdlibm/
fdlibm.js
431
// In order to guarantee error in log below 1
ulp
, we compute log
448
// 1
ulp
(unit in the last place).
455
// algorithm can be used to compute log1p(x) to within a few
ULP
:
647
// 1
ulp
(unit in the last place).
[
all
...]
Completed in 188 milliseconds