Searched refs:SIGN_MASK (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DStrictMath.java935 magnitudeBits = (magnitudeBits & ~Double.SIGN_MASK) | (signBits & Double.SIGN_MASK);
952 magnitudeBits = (magnitudeBits & ~Float.SIGN_MASK) | (signBits & Float.SIGN_MASK);
1018 long sign = bits & Double.SIGN_MASK;
1024 int subNormalFactor = Long.numberOfLeadingZeros(bits & ~Double.SIGN_MASK)
1072 int sign = bits & Float.SIGN_MASK;
1076 int subNormalFactor = Integer.numberOfLeadingZeros(bits & ~Float.SIGN_MASK)
1123 if (Integer.numberOfLeadingZeros(bits & ~Float.SIGN_MASK) <= (32 - absDigits)) {
1142 if (Long.numberOfLeadingZeros(bits & ~Double.SIGN_MASK) <
[all...]
H A DMath.java1011 magnitudeBits = (magnitudeBits & ~Double.SIGN_MASK) | (signBits & Double.SIGN_MASK);
1024 magnitudeBits = (magnitudeBits & ~Float.SIGN_MASK) | (signBits & Float.SIGN_MASK);
1154 long sign = bits & Double.SIGN_MASK;
1160 int subNormalFactor = Long.numberOfLeadingZeros(bits & ~Double.SIGN_MASK)
1207 int sign = bits & Float.SIGN_MASK;
1211 int subNormalFactor = Integer.numberOfLeadingZeros(bits & ~Float.SIGN_MASK)
1257 if (!(Integer.numberOfLeadingZeros(bits & ~Float.SIGN_MASK) <= (32 - absDigits))) {
1283 if (!(Long.numberOfLeadingZeros(bits & ~Double.SIGN_MASK) <
[all...]
H A DRealToString.java68 boolean positive = (inputNumberBits & Double.SIGN_MASK) == 0;
135 boolean positive = (inputNumberBits & Float.SIGN_MASK) == 0;
H A DDouble.java33 static final long SIGN_MASK = 0x8000000000000000L; field in class:Double
H A DFloat.java33 static final int SIGN_MASK = 0x80000000; field in class:Float
/libcore/luni/src/main/native/
H A Dcbigint.cpp90 #define SIGN_MASK (0x8000000000000000LL) macro
96 #define SIGN_MASK (0x8000000000000000L) macro
101 #define SIGN_MASK (0x8000000000000000) macro
629 if (test64 > SIGN_MASK || ((test64 == SIGN_MASK) && (mantissa & 1)))
631 else if (test64 == SIGN_MASK)

Completed in 211 milliseconds