HomeSort by relevance Sort by last modified time
    Searched defs:ulp (Results 1 - 17 of 17) sorted by null

  /external/v8/test/mjsunit/
math-round.js 134 var ulp = Math.pow(2, -1022 - 52); variable
135 var max_denormal = (Math.pow(2, 52) - 1) * ulp;
146 testRound(0, ulp);
160 testRound(-0, -ulp);
  /libcore/luni/src/main/java/java/lang/
Math.java 108 * 1 ulp (unit in the last place) of the real result.
126 * ulp (unit in the last place) of the real result.
144 * within 1 ulp (unit in the last place) of the real result.
242 * The returned result is within 1 ulp (unit in the last place) of the real
278 * of the argument. The returned result is within 1 ulp (unit in the last
298 * cancellation of significant digits). The returned result is within 1 ulp
302 * result is within 0.5 ulp of -1, -1.0 is returned.
343 * medium underflow or overflow. The returned result is within 1 ulp (unit
395 * argument. The returned result is within 1 ulp (unit in the last place) of
416 * argument. The returned result is within 1 ulp (unit in the last place) o
1013 public static double ulp(double d) { method in class:Math
1045 public static float ulp(float f) { method in class:Math
    [all...]
StrictMath.java 946 * Returns the argument's ulp (unit in the last place). The size of a ulp of
949 * {@code ulp(-x) == ulp(x)}.
953 * <li>{@code ulp(+0.0) = Double.MIN_VALUE}</li>
954 * <li>{@code ulp(-0.0) = Double.MIN_VALUE}</li>
955 * <li>{@code ulp(+infinity) = infinity}</li>
956 * <li>{@code ulp(-infinity) = infinity}</li>
957 * <li>{@code ulp(NaN) = NaN}</li>
961 * the floating-point value to compute ulp of
964 public static double ulp(double d) { method in class:StrictMath
994 public static float ulp(float f) { method in class:StrictMath
    [all...]
  /bionic/libc/stdlib/
strtod.c 1013 ulp function
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 616 static double ulp(U *x) function in namespace:WTF
1038 /* Error is less than half an ulp -- check for
1091 dval(&rv) += ulp(&rv);
1093 dval(&rv) -= ulp(&rv);
1129 adj.d = aadj1 * ulp(&rv);
1151 adj.d = aadj1 * ulp(&rv);
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 2722 public BigDecimal ulp() { method in class:BigDecimal
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/4/
android.jar 

Completed in 224 milliseconds