HomeSort by relevance Sort by last modified time
    Searched refs:ULP (Results 1 - 4 of 4) sorted by null

  /bionic/tests/
math_data_test.h 107 // Based on the existing googletest implementation, which uses a fixed 4 ulp bound.
115 template <size_t ULP, typename T>
121 if (!isnan(expected) && !isnan(actual) && UlpDistance(expected, actual) <= ULP) {
137 // and asserting that the result is within ULP ulps of the expected value.
139 template <size_t ULP, typename RT, typename T, size_t N>
142 FpUlpEq<ULP, RT> predicate;
150 // and asserting that the result is within ULP ulps of the expected value.
152 template <size_t ULP, typename T, size_t N>
161 // and asserting that the result is within ULP ulps of the expected value.
163 template <size_t ULP, typename RT, typename T1, typename T2, 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/third_party/fdlibm/
fdlibm.js 393 // In order to guarantee error in log below 1ulp, we compute log
410 // 1 ulp (unit in the last place).
417 // algorithm can be used to compute log1p(x) to within a few ULP:
604 // 1 ulp (unit in the last place).

Completed in 1370 milliseconds