Searched refs:b1 (Results 76 - 100 of 236) sorted by relevance

12345678910

/openjdk7/jdk/test/java/util/ResourceBundle/
H A DTestBug4179766.java109 ResourceBundle b1 = getResourceBundle(loader, "Bug4179766Resource");
110 if (b1 == null) {
117 printIDInfo("[bundle1]",b1);
119 if (b1 != b2) {
145 ResourceBundle b1 = getResourceBundle(new Loader(sameHash), "Bug4179766Resource");
146 if (b1 == null) {
153 printIDInfo("[bundle1]",b1);
155 if (b1 == b2) {
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharPCK.java69 int b1 = ((c1 - rowOffset) << 1) - adjust;
71 outChar = bcJIS0208.getUnicode(b1, b2);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DISO2022_JP.java233 int b1 = 0, b2 = 0, b3 = 0, b4 = 0;
249 b1 = sa[sp] & 0xff;
251 if ((b1 & 0x80) != 0) {
254 if (b1 == ESC || b1 == SO || b1 == SI) {
255 if (b1 == ESC) {
291 } else if (b1 == SO) {
294 } else if (b1 == SI) {
305 da[dp++] = (char)(b1
[all...]
H A DEUC_JP.java128 int b1 = 0, b2 = 0;
134 b1 = sa[sp] & 0xff;
137 if ((b1 & 0x80) == 0) {
138 outputChar = (char)b1;
141 if ((b1 & 0xff) == 0x8f) { // JIS0212
144 b1 = sa[sp + 1] & 0xff;
147 outputChar = decode0212(b1-0x80, b2-0x80);
154 outputChar = decodeDouble(b1, b2);
176 int b1 = 0, b2 = 0;
183 b1
[all...]
H A DMS932_0213.java59 protected char decodeDouble(int b1, int b2) { argument
60 char c = decMS932.decodeDouble(b1, b2);
62 return super.decodeDouble(b1, b2);
/openjdk7/langtools/test/tools/javac/capture/
H A DCapture5.java44 void f(boolean b1, boolean b2, boolean b3, A a, B<String> b, C c) { argument
47 r = b1 ? (b2 ? a : b) : (b3 ? b : c);
/openjdk7/jdk/test/sun/misc/
H A DCopyMemory.java120 byte[] b1 = new byte[BUFFER_SIZE];
123 set(b1, 0, BUFFER_SIZE, FILLER);
128 set(b1, ofs, len, val);
130 unsafe.copyMemory(b1, Unsafe.ARRAY_BYTE_BASE_OFFSET + ofs,
140 byte[] b1 = new byte[BUFFER_SIZE];
143 set(b1, 0, BUFFER_SIZE, FILLER);
148 set(b1, ofs, len, val);
150 unsafe.copyMemory(b1, Unsafe.ARRAY_BYTE_BASE_OFFSET + ofs,
160 long b1 = getMemory(BUFFER_SIZE);
163 set(unsafe, b1,
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DUtils.java57 int b1 = nextNibble(r);
58 if (b1 < 0) {
65 int b = (b1 << 4) | b2;
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DCompressInputStream.java94 int b1 = in.read();
98 if ((b1 | b2 | b3 | b4) < 0)
100 int pack = (b1 << 24) | (b2 << 16) | (b3 << 8) | b4;
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/
H A DCompressInputStream.java94 int b1 = in.read();
98 if ((b1 | b2 | b3 | b4) < 0)
100 int pack = (b1 << 24) | (b2 << 16) | (b3 << 8) | b4;
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DChannels.java149 private byte[] b1 = null;
152 if (b1 == null)
153 b1 = new byte[1];
154 b1[0] = (byte)b;
155 this.write(b1);
205 private byte[] b1 = null;
209 if (b1 == null)
210 b1 = new byte[1];
211 int n = this.read(b1);
213 return b1[
[all...]
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCS_IBM_EBCDIC_Encoder.java48 private byte b1; field in class:DBCS_IBM_EBCDIC_Encoder
139 b1= (byte)((theBytes & 0x0000ff00)>>8);
142 if (b1 == 0x00 && b2 == 0x00
147 if (currentState == DBCS && b1 == 0x00) {
152 } else if (currentState == SBCS && b1 != 0x00) {
168 da[dp++] = b1;
204 b1 = (byte)((theBytes & 0x0000ff00)>>8);
207 if (b1== 0x00 && b2 == 0x00
212 if (currentState == DBCS && b1 == 0x00) {
217 } else if (currentState == SBCS && b1 !
[all...]
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DTraffic.java282 int b0, b1, b2, b3;
286 b1 = in.read ();
290 if (b0 < 0 || b1 < 0 || b2 < 0 || b3 < 0)
294 System.out.println ("READ: b0 = " + b0 + ", b1 = " + b1
300 n |= (b1 & 0x0ff) << 16;
308 int b0, b1, b2, b3;
314 b1 = n & 0x0ff;
319 System.out.println ("WRITE: b0 = " + b0 + ", b1 = " + b1
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DBytesAndLines.java93 byte[] b1 = new byte[size];
94 rand.nextBytes(b1);
104 Path target = write(path, b1);
106 assertTrue(size(path) == b1.length, "Unexpected file size");
110 assertTrue(size(path) == b1.length + b2.length, "Unexpected file size");
118 expected = new byte[b1.length + b2.length];
119 System.arraycopy(b1, 0, expected, 0, b1.length);
120 System.arraycopy(b2, 0, expected, b1.length, b2.length);
122 expected = b1;
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/sun/tools/pack/verify/
H A DGlobals.java221 byte[] b1 = s1.getBytes();
224 if (b1.length != b2.length) {
226 //(+) b1 is greater, (-) b2 is greater
227 Globals.log("Length differs diff: " + (b1.length - b2.length));
230 int minlen = (b1.length < b2.length) ? b1.length : b2.length;
231 for (int i = 0; i < b1.length; i++) {
232 if (b1[i] != b2[i]) {
234 Globals.log("\t" + "idx[" + i + "] 0x" + Integer.toHexString(b1[i]) + "<>" + "0x" + Integer.toHexString(b2[i]));
288 static int pack2Bytes2Int(byte b1, byt argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageInputStreamImpl.java465 int b1 = b[boff + 1] & 0xff;
466 s[off + j] = (short)((b0 << 8) | b1);
472 int b1 = b[boff] & 0xff;
473 s[off + j] = (short)((b0 << 8) | b1);
484 int b1 = b[boff + 1] & 0xff;
485 c[off + j] = (char)((b0 << 8) | b1);
491 int b1 = b[boff] & 0xff;
492 c[off + j] = (char)((b0 << 8) | b1);
503 int b1 = b[boff + 1] & 0xff;
506 i[off + j] = (b0 << 24) | (b1 << 1
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSunFileWriter.java99 int b1, b2, b3, b4 ;
104 b1 = ( i & 0xFF ) << 24 ;
109 i = ( b1 | b2 | b3 | b4 );
122 int b1, b2, b3, b4 ;
124 b1 = ( i & 0xFF ) << 24 ;
129 i = ( b1 | b2 | b3 | b4 );
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DBase64Data.java228 byte b1, b2;
235 b1 = data[base + 1];
237 b1 = 0;
241 | ((b1 >> 4) & 0xF));
244 b1 = data[base + 1];
252 ((b1 & 0xF) << 2)
/openjdk7/jdk/test/java/net/URLEncoder/
H A DSurrogatePairs.java109 int b1 = (a >>8) & 0xff;
111 int b11 = (b1>>4) & 0x0f;
112 int b12 = b1 & 0x0f;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmp_gf2m-priv.h79 /* Compute xor-multiply of two binary polynomials (a1, a0) x (b1, b0)
83 void s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1,
86 /* Compute xor-multiply of two binary polynomials (a2, a1, a0) x (b2, b1, b0)
91 const mp_digit b2, const mp_digit b1, const mp_digit b0);
93 /* Compute xor-multiply of two binary polynomials (a3, a2, a1, a0) x (b3, b2, b1, b0)
98 const mp_digit a0, const mp_digit b3, const mp_digit b2, const mp_digit b1,
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeTextReader.java303 final int b1 = b[1] & 0xFF;
305 if (b0 != 0xEF || b1 != 0xBB || b2 != 0xBF) {
318 final int b1 = b[1] & 0xFF;
319 if (b0 == 0xFE && b1 == 0xFF) {
322 else if (b0 == 0xFF && b1 == 0xFE) {
351 int b1 = b4[1] & 0xFF;
352 if (b0 == 0xFE && b1 == 0xFF) {
356 if (b0 == 0xFF && b1 == 0xFE) {
363 if (b0 == 0xEF && b1 == 0xBB && b2 == 0xBF) {
369 if (b0 == 0x00 && b1
[all...]
/openjdk7/jdk/test/sun/security/smartcardio/
H A DTestTransmit.java102 int b1 = nextNibble(r);
103 if (b1 < 0) {
104 if (b1 == -1) {
119 int b = (b1 << 4) | b2;
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS8Key.java424 byte[] b1;
426 b1 = encodedKey;
428 b1 = getEncoded();
436 if (b1.length != b2.length)
438 for (i = 0; i < b1.length; i++) {
439 if (b1[i] != b2[i]) {
455 byte[] b1 = getEncoded();
457 for (int i = 1; i < b1.length; i++) {
458 retval += b1[i] * i;
/openjdk7/langtools/test/tools/javac/literals/
H A DBadUnderscoreLiterals.java25 int b1 = 0b_0; // leading underscore after radix field in class:BadUnderscoreLiterals
/openjdk7/langtools/test/tools/javac/warnings/6747671/
H A DT6747671.java22 T6747671.B<Integer> b1;//ok field in class:T6747671

Completed in 129 milliseconds

12345678910