Home
last modified time | relevance | path

Searched refs:UNSIGNED_MASK (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/primitives/
DUnsignedLong.java45 private static final long UNSIGNED_MASK = 0x7fffffffffffffffL; field in UnsignedLong
201 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()
DUnsignedBytes.java62 private static final int UNSIGNED_MASK = 0xFF; field in UnsignedBytes
72 return value & UNSIGNED_MASK; in toInt()