Searched refs:b1 (Results 1 - 25 of 236) sorted by relevance

12345678910

/openjdk7/langtools/test/tools/javac/DefiniteAssignment/DefAssignBoolean/
H A DDefAssignBoolean_11.java37 boolean b1, b2;
42 if ((t && (b1 = t)) ? t : t && (b1 = f))
43 r = b1;
H A DDefAssignBoolean_13.java37 boolean b1, b2;
42 if ((t && (b1 = t)) ? f : t || (b1 = f));
44 r = b1;
H A DDefAssignCond.java36 boolean t = true, f = false, b1, b2;
37 if (t ? (b1 = t) : false)
38 t = b1;
H A DDefAssignBoolean_12.java37 boolean b1, b2;
H A DDefAssignBoolean_14.java37 boolean b1, b2;
/openjdk7/jdk/test/java/net/DatagramPacket/
H A DOffset.java34 byte b1[] = new byte[1024];
35 DatagramPacket p = new DatagramPacket(b1, 512, 512 );
/openjdk7/langtools/test/tools/javac/generics/wildcards/pos/
H A DBoundsCollision.java41 Box<Number> b1 = b0;
42 b0.f(b1); // <<pass>>
/openjdk7/langtools/test/tools/javac/mandatoryWarnings/deprecated/
H A DB.java11 B1 b1 = new B1();
/openjdk7/jdk/test/java/io/LineNumberInputStream/
H A DMarkReset.java40 int b1 = in.read();
44 if(b1 != b2)
45 throw new Exception("Read Wrong bytes: Expected " + b1 + " got " + b2);
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DTestUtility.java55 public static boolean equalsBlock(byte[] b1, byte[] b2) { argument
57 if (b1.length != b2.length)
60 for (int i=0; i<b1.length; i++) {
61 if (b1[i] != b2[i])
68 public static boolean equalsBlock(byte[] b1, byte[] b2, int len) { argument
71 if (b1[i] != b2[i])
/openjdk7/jdk/test/java/math/BigInteger/
H A DUnicodeConstructor.java43 BigInteger b1 = new BigInteger("\uff10");
44 System.err.println(b1.toString());
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/
H A DUTF8Reader.java170 int b1 = index == fOffset
172 if (b1 == -1) {
175 if ((b1 & 0xC0) != 0x80) {
176 invalidByte(2, 2, b1);
178 c = ((b0 << 6) & 0x07C0) | (b1 & 0x003F);
184 int b1 = index == fOffset
186 if (b1 == -1) {
189 if ((b1 & 0xC0) != 0x80
190 || (b0 == 0xED && b1 >= 0xA0)
191 || ((b0 & 0x0F) == 0 && (b1
[all...]
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCS_IBM_EBCDIC_Decoder.java85 int b1, b2;
86 b1 = sa[sp];
91 if (b1 < 0)
92 b1 += 256;
94 if (b1 == SO) { // Shift out
102 } else if (b1 == SI) {
113 outputChar = singleByteToChar.charAt(b1);
124 if ((b1 != 0x40 || b2 != 0x40) &&
130 v = b1 * 256 + b2;
155 int b1, b
[all...]
/openjdk7/jdk/test/java/util/BitSet/
H A DBSMethods.java153 BitSet b1 = new BitSet();
154 b1.set(1000);
157 b1.flip(100, 900);
165 b1.flip(2, 44);
347 BitSet b1 = new BitSet(256);
353 b1.set(generator.nextInt(255));
360 BitSet b3 = (BitSet)b1.clone();
365 boolean bit1 = b1.get(x);
371 checkSanity(b1, b2, b3);
381 BitSet b1
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/util/
H A DBase64.java126 byte k=0, l=0, b1=0,b2=0,b3=0;
135 b1 = binaryData[dataIndex++];
140 System.out.println( "b1= " + b1 +", b2= " + b2 + ", b3= " + b3 );
144 k = (byte)(b1 & 0x03);
146 byte val1 = ((b1 & SIGN)==0)?(byte)(b1>>2):(byte)((b1)>>2^0xc0);
165 b1 = binaryData[dataIndex];
166 k = (byte) ( b1
[all...]
/openjdk7/hotspot/test/compiler/7119644/
H A DTestByteDoubleVect.java54 double[] b1 = new double[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, (byte)123, 103.);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, (byte)123, 103.);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]
H A DTestByteFloatVect.java54 float[] b1 = new float[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, (byte)123, 103.f);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, (byte)123, 103.f);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]
H A DTestByteIntVect.java54 int[] b1 = new int[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, (byte)123, (int)103);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, (byte)123, (int)103);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]
H A DTestByteLongVect.java54 long[] b1 = new long[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, (byte)123, (long)103);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, (byte)123, (long)103);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]
H A DTestByteShortVect.java54 short[] b1 = new short[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, (byte)123, (short)103);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, (byte)123, (short)103);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]
H A DTestCharShortVect.java54 short[] b1 = new short[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, (char)123, (short)103);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, (char)123, (short)103);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]
H A DTestFloatDoubleVect.java54 double[] b1 = new double[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, 123.f, 103.);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, 123.f, 103.);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]
H A DTestIntDoubleVect.java54 double[] b1 = new double[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, (int)123, 103.);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, (int)123, 103.);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]
H A DTestIntFloatVect.java54 float[] b1 = new float[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, (int)123, 103.f);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, (int)123, 103.f);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]
H A DTestIntLongVect.java54 long[] b1 = new long[ARRLEN];
58 test_ci(a1, b1);
60 test_cp(a1, a2, b1, b2);
61 test_ci_neg(a1, b1);
62 test_vi_neg(a1, b1, (int)123, (long)103);
63 test_cp_neg(a1, a2, b1, b2);
64 test_ci_oppos(a1, b1);
65 test_vi_oppos(a1, b1, (int)123, (long)103);
66 test_cp_oppos(a1, a2, b1, b2);
67 test_ci_aln(a1, b1);
[all...]

Completed in 148 milliseconds

12345678910