Searched defs:big (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DBase64.java64 * @param big <code>BigInteger<code> to be converted
66 * @return a byte array with <code>bitlen</code> bits of <code>big</code>
68 static final byte[] getBytes(BigInteger big, int bitlen) { argument
73 if (bitlen < big.bitLength()) {
78 byte[] bigBytes = big.toByteArray();
80 if (((big.bitLength() % 8) != 0)
81 && (((big.bitLength() / 8) + 1) == (bitlen / 8))) {
89 if ((big.bitLength() % 8) == 0) { // correct values
107 * @param big
110 public static final String encode(BigInteger big) { argument
125 encode(BigInteger big, int bitlen) argument
[all...]
/openjdk7/jdk/src/share/demo/management/MemoryMonitor/
H A DMemoryMonitor.java121 private Graphics2D big; field in class:MemoryMonitor.Surface
172 if (big == null) {
176 big.setBackground(getBackground());
177 big.clearRect(0,0,w,h);
210 big.setColor(Color.green);
213 big.drawString(String.valueOf((int)totalMemory/1024) + "K Max ", x1+4.0f, (float) y1 + ascent+0.5f);
214 big.setColor(Color.yellow);
217 big.drawString(mp.getName(), x1+x2/2, (float) y1 + ascent+0.5f);
222 big.setColor(Color.green);
223 big
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java111 * The magnitude of this BigInteger, in <i>big-endian</i> order: the
181 * assumed to be in <i>big-endian</i> byte-order: the most significant
184 * @param val big-endian two's-complement binary representation of
204 * BigInteger. The input array is assumed to be in <i>big-endian</i>
224 * in <i>big-endian</i> byte-order: the most significant byte is in the
230 * @param magnitude big-endian binary representation of the magnitude of
1129 * first (big). The first int array (big) must represent a larger number
1133 private static int[] subtract(int[] big, int[] little) { argument
1134 int bigIndex = big
[all...]

Completed in 27 milliseconds