Searched refs:UNSIGNED_MASK (Results 1 – 2 of 2) sorted by relevance
45 private static final long UNSIGNED_MASK = 0x7fffffffffffffffL; field in UnsignedLong201 float fValue = (float) (value & UNSIGNED_MASK); in floatValue()215 double dValue = (double) (value & UNSIGNED_MASK); in doubleValue()226 BigInteger bigInt = BigInteger.valueOf(value & UNSIGNED_MASK); in bigIntegerValue()
62 private static final int UNSIGNED_MASK = 0xFF; field in UnsignedBytes72 return value & UNSIGNED_MASK; in toInt()