Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/misc/
DFormattedFloatingDecimal.java221 int e, expStartIntex; in fillCompatible() local
225 expStartIntex = 1; in fillCompatible()
228 expStartIntex = 0; in fillCompatible()
233 exponent[expStartIntex] = (char) (e + '0'); in fillCompatible()
236 exponent[expStartIntex] = (char) (e / 10 + '0'); in fillCompatible()
237 exponent[expStartIntex+1] = (char) (e % 10 + '0'); in fillCompatible()
240 exponent[expStartIntex] = (char) (e / 100 + '0'); in fillCompatible()
242 exponent[expStartIntex+1] = (char) (e / 10 + '0'); in fillCompatible()
243 exponent[expStartIntex+2] = (char) (e % 10 + '0'); in fillCompatible()