Home
last modified time | relevance | path

Searched refs:SIGN_BIT_MASK (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/misc/
DFloatConsts.java90 public static final int SIGN_BIT_MASK = 0x80000000; field in FloatConsts
107 assert(((SIGN_BIT_MASK | EXP_BIT_MASK | SIGNIF_BIT_MASK) == ~0) &&
108 (((SIGN_BIT_MASK & EXP_BIT_MASK) == 0) &&
109 ((SIGN_BIT_MASK & SIGNIF_BIT_MASK) == 0) &&
DDoubleConsts.java95 public static final long SIGN_BIT_MASK = 0x8000000000000000L; field in DoubleConsts
112 assert(((SIGN_BIT_MASK | EXP_BIT_MASK | SIGNIF_BIT_MASK) == ~0L) &&
113 (((SIGN_BIT_MASK & EXP_BIT_MASK) == 0L) &&
114 ((SIGN_BIT_MASK & SIGNIF_BIT_MASK) == 0L) &&
/libcore/ojluni/src/main/java/java/lang/
DMath.java1925 (DoubleConsts.SIGN_BIT_MASK)) | in copySign()
1948 (FloatConsts.SIGN_BIT_MASK)) | in copySign()
2095 transducer = DoubleConsts.SIGN_BIT_MASK | 1L; in nextAfter()
2194 transducer = FloatConsts.SIGN_BIT_MASK | 1; in nextAfter()
/libcore/ojluni/src/main/java/java/math/
DBigInteger.java4232 bits |= signum & FloatConsts.SIGN_BIT_MASK;
4324 bits |= signum & DoubleConsts.SIGN_BIT_MASK;