Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/math/
DBigDecimal.java2542 long tempBits; // for temporal calculations in doubleValue() local
2583 tempBits = bits; in doubleValue()
2592 tempBits = bits; in doubleValue()
2618 bits = tempBits >> 1; in doubleValue()
2619 tempBits = bits & (-1L >>> (63 + exponent)); in doubleValue()
2622 if (((bits & 3) == 3) || (((bits & 1) == 1) && (tempBits != 0) in doubleValue()