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.java2536 long tempBits; // for temporal calculations in doubleValue() local
2577 tempBits = bits; in doubleValue()
2586 tempBits = bits; in doubleValue()
2612 bits = tempBits >> 1; in doubleValue()
2613 tempBits = bits & (-1L >>> (63 + exponent)); in doubleValue()
2616 if (((bits & 3) == 3) || (((bits & 1) == 1) && (tempBits != 0) in doubleValue()