OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:firstNonZeroDigit
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/math/
BitLevel.java
230
int
firstNonZeroDigit
= val.getFirstNonzeroDigit();
231
if (intCount >
firstNonZeroDigit
) {
233
} else if (intCount <
firstNonZeroDigit
) {
235
for (i=intCount + 1; i <
firstNonZeroDigit
; i++) {
BigInteger.java
83
private transient int
firstNonzeroDigit
= -2;
558
int
firstNonZeroDigit
= getFirstNonzeroDigit();
559
if (intCount <
firstNonZeroDigit
) {
561
} else if (
firstNonZeroDigit
== intCount) {
[
all
...]
Completed in 435 milliseconds