OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:diffscale
(Results
1 - 1
of
1
) sorted by null
/dalvik/libcore/math/src/main/java/java/math/
BigDecimal.java
823
int
diffScale
= this.scale - augend.scale;
826
if (
diffScale
<= 0) {
833
if (
diffScale
>= 0) {
838
if (
diffScale
== 0) {
844
} else if (
diffScale
> 0) {
846
return addAndMult10(this, augend,
diffScale
);
848
return addAndMult10(augend, this, -
diffScale
);
852
private static BigDecimal addAndMult10(BigDecimal thisValue,BigDecimal augend, int
diffScale
) {
854
if(
diffScale
< LONG_TEN_POW.length &&
855
Math.max(thisValue.bitLength,augend.bitLength+LONG_TEN_POW_BIT_LENGTH[
diffScale
])+1<64)
[
all
...]
Completed in 912 milliseconds