Searched refs:ndigits (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFormattedFloatingDecimal.java312 int ndigits;
336 ndigits = 10;
338 digitno = ndigits-1;
356 ndigits = 20;
358 digitno = ndigits-1;
375 ndigits -= digitno;
376 result = new char[ ndigits ];
377 System.arraycopy( digits, digitno, result, 0, ndigits );
380 this.nDigits = ndigits;
H A DFloatingDecimal.java304 int ndigits;
328 ndigits = 10;
330 digitno = ndigits-1;
348 ndigits = 20;
350 digitno = ndigits-1;
367 ndigits -= digitno;
368 result = new char[ ndigits ];
369 System.arraycopy( digits, digitno, result, 0, ndigits );
372 this.nDigits = ndigits;
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c1485 unsigned int ndigits = 0, first = 16 /* flag value */; local
1493 digits[ndigits++] = (char)(48 + num);
1498 first = ndigits;
1502 if (ndigits > 0)
1504 while (ndigits > 5) *ascii++ = digits[--ndigits];
1505 /* The remaining digits are fractional digits, ndigits is '5' or
1513 /* ndigits may be <5 for small numbers, output leading zeros
1514 * then ndigits digits to first:
1517 while (ndigits <
[all...]

Completed in 46 milliseconds