Searched refs:big (Results 1 - 23 of 23) sorted by relevance

/openjdk9/jdk/test/java/util/Collections/
H A DBigBinarySearch.java35 // Allows creation of very "big" collections without using too
81 List<Integer> big = new SparseIntegerList();
82 big.set( 0, -44);
83 big.set( 1, -43);
84 big.set(n-2, 43);
85 big.set(n-1, 44);
91 checkBinarySearch(big, i);
92 checkBinarySearch(big, i, null);
93 checkBinarySearch(big, i, natural);
96 big
[all...]
/openjdk9/jdk/test/java/io/CharArrayReader/
H A DOverflowInSkip.java37 long big = Long.MAX_VALUE;
45 long bigSkip = car.skip(big);
/openjdk9/jdk/test/java/math/BigInteger/
H A DPrimitiveConversionTests.java67 for (BigInteger big : ALL_BIGINTEGER_CANDIDATES) {
68 double expected = Double.parseDouble(big.toString());
69 double actual = big.doubleValue();
74 System.out.println(big);
83 for (BigInteger big : ALL_BIGINTEGER_CANDIDATES) {
84 float expected = Float.parseFloat(big.toString());
85 float actual = big.floatValue();
90 System.out.println(big + " " + expected + " " + actual);
/openjdk9/jdk/test/javax/sound/midi/Gervill/AudioFloatConverter/
H A DToFloatArray.java47 for (int big = 0; big < 2; big+=1)
52 44100, big==1);
65 for (int big = 0; big < 2; big+=1)
68 AudioFormat frm = new AudioFormat(44100, bits, 1, signed==1, big==1);
80 // Check big/little
81 for (int big
[all...]
/openjdk9/jdk/test/java/awt/image/DrawImage/
H A DIncorrectAlphaSurface2SW.java83 Graphics2D big = destBI.createGraphics();
84 big.setComposite(AlphaComposite.Src);
85 big.drawImage(sourceBI, 0, 0, sw, sw, null);
86 big.dispose();
114 Graphics2D big = bi.createGraphics();
115 big.setComposite(AlphaComposite.Src);
116 big.drawImage(vi, 0, 0, bi.getWidth(), bi.getHeight(), null);
117 big.dispose();
H A DIncorrectSourceOffset.java68 Graphics2D big = bi.createGraphics();
69 big.drawImage(vi, 7, 11, 127, 111, 7, 11, 127, 111, null);
70 big.dispose();
H A DIncorrectClipSurface2SW.java113 Graphics2D big = bi.createGraphics();
114 big.setComposite(AlphaComposite.Src);
115 big.setClip(clip);
122 big.drawImage(vi, x1, y1, x2, y2, 0, 0, toBounds.width / scale,
124 big.dispose();
H A DIncorrectUnmanagedImageSourceOffset.java83 Graphics2D big = gold.createGraphics();
85 big.drawImage(bi, 7, 11, 127, 111, 7, 11, 127 * 2, 111, null);
86 big.dispose();
/openjdk9/jdk/src/java.base/share/classes/sun/security/util/
H A DObjectIdentifier.java289 BigInteger big = BigInteger.valueOf(components[1]);
290 big = big.add(BigInteger.valueOf(components[0]*40));
291 pos += pack7Oid(big, tmp, pos);
364 BigInteger big = new BigInteger(pack(encoding, fromPos, i-fromPos+1, 7, 8));
367 BigInteger second = big.subtract(BigInteger.valueOf(80));
374 if (big.compareTo(BigInteger.valueOf(Integer.MAX_VALUE)) == 1) {
377 result[which++] = big.intValue();
428 if (i - fromPos + 1 > 4) { // maybe big integer
429 BigInteger big
[all...]
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DBase64.java108 * @param big <code>BigInteger<code> to be converted
110 * @return a byte array with <code>bitlen</code> bits of <code>big</code>
112 static final byte[] getBytes(BigInteger big, int bitlen) { argument
117 if (bitlen < big.bitLength()) {
121 byte[] bigBytes = big.toByteArray();
123 if (((big.bitLength() % 8) != 0)
124 && (((big.bitLength() / 8) + 1) == (bitlen / 8))) {
132 if ((big.bitLength() % 8) == 0) { // correct values
149 * @param big
152 public static final String encode(BigInteger big) { argument
167 encode(BigInteger big, int bitlen) argument
[all...]
/openjdk9/jdk/test/java/awt/font/TextLayout/
H A DTestJustification.java185 Float big = new Float(24.0);
191 astr.addAttribute(TextAttribute.SIZE, big, ix, ix + 6);
193 astr.addAttribute(TextAttribute.SIZE, big, ix, ix + 6);
195 astr.addAttribute(TextAttribute.SIZE, big, ix, ix + 6);
197 astr.addAttribute(TextAttribute.SIZE, big, ix, ix + 3);
/openjdk9/jdk/test/java/io/File/
H A DBasic.java44 static File bigFile = new File("x.Basic.big");
132 long big = ((long)Integer.MAX_VALUE) * 2;
134 raf.seek(big);
137 testFile(bigFile, true, big + 1);
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/math/
H A DFDBigInteger.java32 * A simple big integer package specifically for floating point base conversion.
117 // Cache of big powers of 5 as FDBigIntegers.
593 // q is too big.
731 * Multiplies two big integers represented as int arrays.
1027 FDBigInteger big;
1034 big = x;
1039 big = y;
1049 return this.cmp(big);
1057 long top = (big.data[big
[all...]
/openjdk9/jdk/test/java/awt/print/PrinterJob/ImagePrinting/
H A DImageTypes.java195 Graphics big = bi.getGraphics();
197 big.drawImage(opaqueImg, 0, 0, null);
199 big.drawImage(transImg, 0, 0, null);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DBGMBuilder.java212 BindInfo big = new BindInfo();
213 big.addDecl(globalBinding);
214 big.setOwner(this,null);
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/misc/
H A DUnsafe.java3326 * platform is big-endian, false if it is little-endian.
3578 // BE is true iff the native endianness of this platform is big.
3673 private static char convEndian(boolean big, char n) { return big == BE ? n : Character.reverseBytes(n); } argument
3674 private static short convEndian(boolean big, short n) { return big == BE ? n : Short.reverseBytes(n) ; } argument
3675 private static int convEndian(boolean big, int n) { return big == BE ? n : Integer.reverseBytes(n) ; } argument
3676 private static long convEndian(boolean big, long n) { return big argument
[all...]
/openjdk9/jdk/src/java.base/share/classes/java/math/
H A DBigInteger.java137 * The magnitude of this BigInteger, in <i>big-endian</i> order: the
284 * assumed to be in <i>big-endian</i> byte-order: the most significant
293 * @param val byte array containing a sub-array which is the big-endian
326 * assumed to be in <i>big-endian</i> byte-order: the most significant
330 * @param val big-endian two's-complement binary representation of a
341 * BigInteger. The input array is assumed to be in <i>big-endian</i>
366 * a byte array in <i>big-endian</i> byte-order: the most significant byte
379 * @param magnitude big-endian binary representation of the magnitude of
420 * in <i>big-endian</i> byte-order: the most significant byte is the
428 * @param magnitude big
1466 subtract(int[] big, long val) argument
1523 subtract(int[] big, int[] little) argument
[all...]
H A DBigDecimal.java1409 BigDecimal big;
1412 if (padding < 0) { // lhs is big; augend is small
1413 big = lhs;
1415 } else { // lhs is small; augend is big
1416 big = augend;
1426 long estResultUlpScale = (long) big.scale - big.precision() + mc.precision;
1429 * The low-order digit position of big is big.scale(). This
1430 * is true regardless of whether big ha
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/image/
H A DColorConvertOp.java286 Graphics2D big = savdest.createGraphics();
288 big.drawImage(dest, 0, 0, null);
290 big.dispose();
/openjdk9/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DPackageWriter.java754 Utils.log.fine("big string["+i+"] len="+suffix+" #wide="+numWide+" size="+sizes[BYTE_SIZE]+"/z="+sizes[ZIP_SIZE]+" coding "+special);
761 Utils.log.fine("big string["+i+"] normalSize="+normalSizes[BYTE_SIZE]+"/z="+normalSizes[ZIP_SIZE]+" win="+(specialZipSize<normalZipSize-minWin));
763 IntBand big = cp_Utf8_big_chars.newIntBand(bandName);
764 big.initializeValues(cvals);
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DmacroAssembler_aarch64.cpp2542 ror(x_xstart, x_xstart, 32); // convert big-endian to little-endian
2551 ror(y_idx, y_idx, 32); // convert big-endian to little-endian
2563 ror(product, product, 32); // back to big-endian
2624 ror(yz_idx1, yz_idx1, 32); // convert big-endian to little-endian
2632 ror(rscratch1, rscratch1, 32); // convert big-endian to little-endian
2647 ror(tmp3, tmp3, 32); // convert little-endian to big-endian
2800 ror(product_hi, product_hi, 32); // convert big-endian to little-endian
5191 Label big, done;
5198 cbnzw(rscratch1, big);
5229 bind(big);
[all...]
/openjdk9/common/autoconf/
H A Dgenerated-configure.sh15773 VAR_CPU_ENDIAN=big
15779 VAR_CPU_ENDIAN=big
15791 VAR_CPU_ENDIAN=big
15797 VAR_CPU_ENDIAN=big
15803 VAR_CPU_ENDIAN=big
15809 VAR_CPU_ENDIAN=big
15912 VAR_CPU_ENDIAN=big
15918 VAR_CPU_ENDIAN=big
15930 VAR_CPU_ENDIAN=big
15936 VAR_CPU_ENDIAN=big
[all...]
/openjdk9/nashorn/test/script/basic/
H A DJDK-8017084.js1624 big: 1593,

Completed in 392 milliseconds