/external/ipsec-tools/src/racoon/ |
policy.h | 112 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, _priority, _created, idx) \ 118 (idx)->ul_proto = (ulp); \ 125 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, _created, idx) \ 131 (idx)->ul_proto = (ulp); \
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldAndroidMathTest.java | 36 Assert.assertEquals(message, expected, actual, Math.ulp(expected)); 44 Assert.assertEquals(message, expected, actual, Math.ulp(expected)); 591 assertTrue("Should return NaN", Double.isNaN(Math.ulp(Double.NaN))); 593 .ulp(Double.POSITIVE_INFINITY), 0D); 595 .ulp(Double.NEGATIVE_INFINITY), 0D); 597 .ulp(0.0), 0D); 599 .ulp(+0.0), 0D); 601 .ulp(-0.0), 0D); 603 .ulp(Double.MAX_VALUE), 0D); 605 .ulp(-Double.MAX_VALUE), 0D) [all...] |
OldAndroidStrictMathTest.java | 615 .isNaN(StrictMath.ulp(Double.NaN))); 617 StrictMath.ulp(Double.POSITIVE_INFINITY), 0D); 619 StrictMath.ulp(Double.NEGATIVE_INFINITY), 0D); 621 .ulp(0.0), 0D); 623 .ulp(+0.0), 0D); 625 .ulp(-0.0), 0D); 627 StrictMath.ulp(Double.MAX_VALUE), 0D); 629 StrictMath.ulp(-Double.MAX_VALUE), 0D); 632 .ulp(Double.MIN_VALUE), 0D); 634 .ulp(-Double.MIN_VALUE), 0D) [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
StrictMathTest.java | [all...] |
MathTest.java | [all...] |
/external/ipsec-tools/src/libipsec/ |
pfkey_dump.c | 695 str_prefport(family, pref, port, ulp) 696 u_int family, pref, port, ulp; 719 if (ulp == IPPROTO_ICMPV6) 734 str_upperspec(ulp, p1, p2) 735 u_int ulp, p1, p2; 737 if (ulp == IPSEC_ULPROTO_ANY) 739 else if (ulp == IPPROTO_ICMPV6) { 746 switch (ulp) { 751 ent = getprotobynumber((int)ulp); 755 printf("%u", ulp); [all...] |
/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);
|
/hardware/msm7k/librpc/rpc/ |
xdr.h | 91 extern bool_t xdr_long (XDR *xdr, long *ulp); 92 extern bool_t xdr_u_long (XDR *xdr, u_long *ulp);
|
/external/kernel-headers/original/linux/ |
if_hippi.h | 82 __u8 ulp; /* must contain 4 */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_hippi.h | 82 __u8 ulp; /* must contain 4 */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_hippi.h | 82 __u8 ulp; /* must contain 4 */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_hippi.h | 82 __u8 ulp; /* must contain 4 */
|
/hardware/msm7k/librpc/ |
xdr.c | 122 bool_t xdr_u_long (XDR *xdr, u_long *ulp) 126 return XDR_SEND_UINT32(xdr, (uint32_t *)ulp); 128 return XDR_RECV_UINT32(xdr, (uint32_t *)ulp);
|
/libcore/luni/src/main/java/java/lang/ |
StrictMath.java | 868 * Returns the argument's ulp (unit in the last place). The size of a ulp of 871 * {@code ulp(-x) == ulp(x)}. 875 * <li>{@code ulp(+0.0) = Double.MIN_VALUE}</li> 876 * <li>{@code ulp(-0.0) = Double.MIN_VALUE}</li> 877 * <li>{@code ulp(+infinity) = infinity}</li> 878 * <li>{@code ulp(-infinity) = infinity}</li> 879 * <li>{@code ulp(NaN) = NaN}</li> 883 * the floating-point value to compute ulp of 886 public static double ulp(double d) { method in class:StrictMath 916 public static float ulp(float f) { method in class:StrictMath [all...] |
Math.java | 89 * 1 ulp (unit in the last place) of the real result. 107 * ulp (unit in the last place) of the real result. 125 * within 1 ulp (unit in the last place) of the real result. 219 * The returned result is within 1 ulp (unit in the last place) of the real 255 * of the argument. The returned result is within 1 ulp (unit in the last 275 * cancellation of significant digits). The returned result is within 1 ulp 279 * result is within 0.5 ulp of -1, -1.0 is returned. 316 * medium underflow or overflow. The returned result is within 1 ulp (unit 368 * argument. The returned result is within 1 ulp (unit in the last place) of 389 * argument. The returned result is within 1 ulp (unit in the last place) o 934 public static double ulp(double d) { method in class:Math 966 public static float ulp(float f) { method in class:Math [all...] |
/libcore/benchmarks/src/benchmarks/regression/ |
MathBenchmark.java | 359 Math.ulp(d); 365 Math.ulp(f);
|
StrictMathBenchmark.java | 347 StrictMath.ulp(d); 353 StrictMath.ulp(f);
|
/external/chromium/base/third_party/dmg_fp/ |
dtoa.cc | 1153 ulp [all...] |
/external/guava/guava-tests/test/com/google/common/math/ |
DoubleMathTest.java | 394 assertTrue(Math.abs(dmLog2 - trueLog2) <= Math.ulp(trueLog2)); 461 assertEquals(actual, result, Math.ulp(actual));
|
/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...] |
/bionic/libc/stdlib/ |
strtod.c | 1013 ulp function [all...] |
/external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/ |
BigDecimalArithmeticTest.java | [all...] |
/libcore/luni/src/main/java/java/math/ |
BigDecimal.java | 2641 public BigDecimal ulp() { method in class:BigDecimal [all...] |
/prebuilts/sdk/10/ |
android.jar | |
/prebuilts/sdk/11/ |
android.jar | |