Searched refs:b5p (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFormattedFloatingDecimal.java133 private static FDBigInt b5p[]; field in class:FormattedFloatingDecimal
138 if ( b5p == null ){
139 b5p = new FDBigInt[ p+1 ];
140 }else if (b5p.length <= p ){
142 System.arraycopy( b5p, 0, t, 0, b5p.length );
143 b5p = t;
145 if ( b5p[p] != null )
146 return b5p[p];
148 return b5p[
[all...]
H A DFloatingDecimal.java125 private static FDBigInt b5p[]; field in class:FloatingDecimal
130 if ( b5p == null ){
131 b5p = new FDBigInt[ p+1 ];
132 }else if (b5p.length <= p ){
134 System.arraycopy( b5p, 0, t, 0, b5p.length );
135 b5p = t;
137 if ( b5p[p] != null )
138 return b5p[p];
140 return b5p[
[all...]

Completed in 29 milliseconds