HomeSort by relevance Sort by last modified time
    Searched refs:ulp (Results 26 - 50 of 67) sorted by null

12 3

  /hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
LocEngAdapter.h 66 virtual void setUlpProxy(UlpProxyBase* ulp);
94 virtual void setUlpProxy(UlpProxyBase* ulp);
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
LocEngAdapter.h 64 virtual void setUlpProxy(UlpProxyBase* ulp);
84 virtual void setUlpProxy(UlpProxyBase* ulp);
  /hardware/qcom/gps/msm8974/loc_api/libloc_api_50001/
LocEngAdapter.h 66 virtual void setUlpProxy(UlpProxyBase* ulp);
94 virtual void setUlpProxy(UlpProxyBase* ulp);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
MicrosphereInterpolatingFunction.java 204 if (FastMath.abs(diffNorm) < FastMath.ulp(1d)) {
  /external/deqp/framework/common/
tcuFloatFormat.cpp 79 * On the definition of ULP
81 * The GLSL spec does not define ULP. However, it refers to IEEE 754, which
84 * ULP(x) is the distance between the closest floating point numbers
87 * Note that this means that when x = 2^n, ULP(x) = 2^(n-p-1), i.e. it is the
90 * Furthermore, it is assumed that ULP is calculated relative to the exact
94 * For details, see "On the definition of ulp(x)" by Jean-Michel Muller
98 double FloatFormat::ulp (double x, double count) const function in class:tcu::FloatFormat
109 // Harrison's ULP: choose distance to closest (i.e. next lower) at binade
116 // ULP cannot be lower than the smallest quantum.
335 oss << "ulp(" << arg << ")"
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
StrictMathBenchmark.java 347 StrictMath.ulp(d);
353 StrictMath.ulp(f);
MathBenchmark.java 473 result = Math.ulp(d);
481 result = Math.ulp(f);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSBaseCompute.java 52 float ulp = Math.ulp(ref[refIdx]) * ulpCount; local
56 ulp);
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gdtoaimp.h 568 #define ulp __ulp_D2A macro
616 extern double ulp ANSI((U*));
  /libcore/luni/src/main/java/java/lang/
Math.java 99 * 1 ulp (unit in the last place) of the real result.
117 * ulp (unit in the last place) of the real result.
135 * within 1 ulp (unit in the last place) of the real result.
229 * The returned result is within 1 ulp (unit in the last place) of the real
265 * of the argument. The returned result is within 1 ulp (unit in the last
285 * cancellation of significant digits). The returned result is within 1 ulp
289 * result is within 0.5 ulp of -1, -1.0 is returned.
326 * medium underflow or overflow. The returned result is within 1 ulp (unit
378 * argument. The returned result is within 1 ulp (unit in the last place) of
399 * argument. The returned result is within 1 ulp (unit in the last place) o
962 public static double ulp(double d) { method in class:Math
994 public static float ulp(float f) { method in class:Math
    [all...]
StrictMath.java 1816 public static double ulp(double d) { method in class:StrictMath
1846 public static float ulp(float f) { method in class:StrictMath
    [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/
SingularValueDecompositionImpl.java 255 final double threshold = FastMath.max(m, n) * FastMath.ulp(singularValues[0]);
ArrayRealVector.java 586 data[i] = FastMath.ulp(data[i]);
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
AbstractIntegrator.java 403 FastMath.ulp(FastMath.max(FastMath.abs(startTime), FastMath.abs(endTime))),
  /ndk/sources/android/support/src/stdio/
strtod.c 1257 ulp function
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]
glsRasterizationTestUtil.cpp 209 float getExponentEpsilonFromULP (int valueExponent, deUint32 ulp)
211 DE_ASSERT(ulp < (1u<<10));
213 // assume mediump precision, using ulp as ulps in a 10 bit mantissa
214 return tcu::Float32::construct(+1, valueExponent, (1u<<23) + (ulp << (23 - 10))).asFloat() - tcu::Float32::construct(+1, valueExponent, (1u<<23)).asFloat();
217 float getValueEpsilonFromULP (float value, deUint32 ulp)
222 return getExponentEpsilonFromULP(exponent, ulp);
225 float getMaxValueWithinError (float value, deUint32 ulp)
230 return value + getValueEpsilonFromULP(value, ulp);
233 float getMinValueWithinError (float value, deUint32 ulp)
238 return value - getValueEpsilonFromULP(value, ulp);
    [all...]
  /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).
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalArithmeticTest.java     [all...]
  /external/guava/guava-tests/test/com/google/common/math/
DoubleMathTest.java 454 @GwtIncompatible("Math.ulp")
459 assertEquals(actual, result, Math.ulp(actual));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java 691 * rounded for 99.9% of input values, with less than 1 ULP error otherwise.
788 is less than 0.5 ULP */
3388 public static double ulp(double x) { method in class:FastMath
3400 public static float ulp(float x) { method in class:FastMath
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng.cpp 521 inline LocEngSuplMode(UlpProxyBase* ulp) :
522 LocMsg(), mUlp(ulp)
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 2643 public BigDecimal ulp() { method in class:BigDecimal
    [all...]
  /bionic/libc/
Android.mk 337 upstream-openbsd/lib/libc/gdtoa/ulp.c \
    [all...]

Completed in 779 milliseconds

12 3