Searched refs:b1 (Results 51 - 75 of 236) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DISO2022_CN.java143 byte b1 = 0, b2 = 0, b3 = 0, b4 = 0;
148 b1 = src.get();
151 while (b1 == ISO_ESC ||
152 b1 == ISO_SO ||
153 b1 == ISO_SI) {
154 if (b1 == ISO_ESC) { // ESC
226 } else if (b1 == ISO_SO) {
228 } else if (b1 == ISO_SI) { // shift back in
234 b1 = src.get();
242 dst.put((char)(b1
[all...]
H A DHKSCS.java65 public char decodeBig5(int b1, int b2) { argument
66 return big5Dec.decodeDouble(b1, b2);
69 public char decodeDouble(int b1, int b2) { argument
70 return b2cBmp[b1][b2 - b2Min];
73 public char decodeDoubleEx(int b1, int b2) { argument
79 return b2cSupp[b1][b2 - b2Min];
93 int b1 = sa[sp] & 0xff;
94 char c = decodeSingle(b1);
104 c = decodeDouble(b1, b2); //bmp
106 c = decodeDoubleEx(b1, b
[all...]
H A DDoubleByteDecoder.java79 int b1, b2;
80 b1 = sa[sp];
84 char c = decodeSingle(b1);
86 b1 &= 0xff;
90 c = decodeDouble(b1, b2);
120 int b1 = src.get();
125 char c = decodeSingle(b1);
130 b1 &= 0xff;
134 c = decodeDouble(b1, b2);
H A DDoubleByte.java79 * public char decodeDouble(int b1, int b2) {
82 * return b2c[b1][b2 - b2Min];
87 * (2)The high 8-bit/b1 of the double-byte are used to indexed into
154 int b1 = sa[sp] & 0xff;
155 char c = b2cSB[b1];
158 return crMalformedOrUnderFlow(b1);
161 (c = b2c[b1][b2 - b2Min]) == UNMAPPABLE_DECODING) {
162 return crMalformedOrUnmappable(b1);
182 int b1 = src.get() & 0xff;
183 char c = b2cSB[b1];
226 decodeDouble(int b1, int b2) argument
262 isDoubleByte(int b1, int b2) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DMessage_1_2.java53 int b1, b2, b3, b4;
56 b1 = (byteBuffer.get(GIOPMessageHeaderLength+0) << 24) & 0xFF000000;
61 b1 = (byteBuffer.get(GIOPMessageHeaderLength+3) << 24) & 0xFF000000;
67 this.request_id = (b1 | b2 | b3 | b4);
/openjdk7/jdk/test/java/awt/Focus/RestoreFocusOnDisabledComponentTest/
H A DRestoreFocusOnDisabledComponentTest.java45 Button b1 = new Button("button1") {public String toString() {return "B-1";}}; field in class:RestoreFocusOnDisabledComponentTest
61 frame.add(b1);
71 // Trying to emulate timings. b1 should be disabled just by the time it gets
74 if (e.getSource() == b1) {
75 b1.setEnabled(false);
88 // Focus will be requested to b1. When FOCUS_GAINED is being dispatched to b1, it will
/openjdk7/jdk/test/java/io/PushbackInputStream/
H A DClosedStream.java39 int b1,b2;
/openjdk7/jdk/test/java/io/SequenceInputStream/
H A DConstructorNull.java43 int b1,b2;
/openjdk7/langtools/test/tools/javac/annotations/6881115/
H A DT6881115.java14 String b1(); method in interface:B
/openjdk7/jdk/test/java/security/MessageDigest/
H A DByteBuffers.java49 ByteBuffer b1 = ByteBuffer.allocate(n + 256);
50 b1.position(random.nextInt(256));
51 b1.limit(b1.position() + n);
52 ByteBuffer b2 = b1.slice();
/openjdk7/jdk/test/java/security/Signature/
H A DByteBuffers.java57 ByteBuffer b1 = ByteBuffer.allocate(n + 256);
58 b1.position(random.nextInt(256));
59 b1.limit(b1.position() + n);
60 ByteBuffer b2 = b1.slice();
/openjdk7/jdk/test/javax/crypto/Mac/
H A DByteBuffers.java57 ByteBuffer b1 = ByteBuffer.allocate(n + 256);
58 b1.position(random.nextInt(256));
59 b1.limit(b1.position() + n);
60 ByteBuffer b2 = b1.slice();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DChannelInputStream.java72 private byte[] b1 = null; field in class:ChannelInputStream
79 if (b1 == null)
80 b1 = new byte[1];
81 int n = this.read(b1);
83 return b1[0] & 0xff;
/openjdk7/jdk/test/sun/security/pkcs11/MessageDigest/
H A DByteBuffers.java58 ByteBuffer b1 = ByteBuffer.allocate(n + 256);
59 b1.position(random.nextInt(256));
60 b1.limit(b1.position() + n);
61 ByteBuffer b2 = b1.slice();
/openjdk7/jdk/test/sun/security/pkcs11/Signature/
H A DByteBuffers.java61 ByteBuffer b1 = ByteBuffer.allocate(n + 256);
62 b1.position(random.nextInt(256));
63 b1.limit(b1.position() + n);
64 ByteBuffer b2 = b1.slice();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DBase64.java124 byte k=0, l=0, b1=0,b2=0,b3=0;
132 b1 = binaryData[dataIndex];
137 k = (byte)(b1 & 0x03);
140 encodedData[encodedIndex] = lookUpBase64Alphabet[ b1 >>2 ];
152 b1 = binaryData[dataIndex];
153 k = (byte) ( b1 &0x03 );
154 encodedData[encodedIndex] = lookUpBase64Alphabet[ b1 >>2 ];
160 b1 = binaryData[dataIndex];
163 k = ( byte ) ( b1 &0x03 );
164 encodedData[encodedIndex] = lookUpBase64Alphabet[ b1 >>
[all...]
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DEUC_TW.java44 for (int b1 = b1Min; b1 <= b1Max; b1++) {
46 ca[off++] = (char)(db[b1 * 256 + b2] & 0xffff);
58 for (int b1 = b1Min; b1 <= b1Max; b1++) {
61 ca[off++] = (char)(((ba[b1 * 256 + b2++] & 0xff) << 8) |
62 (ba[b1 * 256 + b2++] & 0xff));
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCS_IBM_ASCII_Encoder.java48 private byte b1; field in class:DBCS_IBM_ASCII_Encoder
116 b1 = (byte)((theBytes & 0x0000ff00)>>8);
119 if (b1 == 0x00 && b2 == 0x00
124 if (b1 == 0) {
131 da[dp++] = (byte) b1;
166 b1 = (byte)((theBytes & 0x0000ff00)>>8);
169 if (b1 == 0x00 && b2 == 0x00
174 if (b1 == 0) {
181 dst.put((byte) b1);
H A DDoubleByteDecoder.java79 int b1, b2;
80 b1 = sa[sp];
84 char c = decodeSingle(b1);
86 b1 &= 0xff;
90 c = decodeDouble(b1, b2);
120 int b1 = src.get();
125 char c = decodeSingle(b1);
130 b1 &= 0xff;
134 c = decodeDouble(b1, b2);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftFilter.java70 private float b1; field in class:SoftFilter
123 b1 = 0;
160 last_b1 = b1;
173 float b1 = this.last_b1;
180 float b1_delta = (this.b1 - this.last_b1) / len;
198 b1 += b1_delta;
203 float y = (a0*x + a1*x1 + a2*x2 - b1*y1 - b2*y2);
209 float yy = (a0*xx + a1*xx1 + a2*xx2 - b1*yy1 - b2*yy2);
220 float y = (a0*x + a1*x1 + a2*x2 - b1*y1 - b2*y2);
226 float yy = (a0*xx + a1*xx1 + a2*xx2 - b1*yy
[all...]
H A DSunFileReader.java171 int b1, b2, b3, b4 ;
176 b1 = ( i & 0xFF ) << 24 ;
181 i = ( b1 | b2 | b3 | b4 );
194 int b1, b2, b3, b4 ;
196 b1 = ( i & 0xFF ) << 24 ;
201 i = ( b1 | b2 | b3 | b4 );
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaLazyReadObject.java138 int b1 = ((int) value[index++] & 0xff);
140 return (char) ((b1 << 8) + b2);
144 int b1 = ((int) value[index++] & 0xff);
146 return (short) ((b1 << 8) + b2);
150 int b1 = ((int) value[index++] & 0xff);
154 return ((b1 << 24) + (b2 << 16) + (b3 << 8) + b4);
/openjdk7/langtools/test/tools/javac/generics/6531090/
H A DT6531090b.java43 public void b1() {} method in class:T6531090b.B
46 public B b1; field in class:T6531090b.B
79 arg.t.b1();
86 arg.w.b1();
97 tb = arg.t.b1;
103 tb = arg.w.b1;
/openjdk7/jdk/test/java/io/Serializable/defaulted/
H A DGetFieldWrite.java81 public Foo(int a1, int b1) argument
83 a = a1; b = b1;
/openjdk7/jdk/test/java/io/
H A DUnicode.java49 static void fail(String enc, String msg, int e0, int e1, int b0, int b1) argument
58 + " " + Integer.toHexString(b1));
71 int b1 = b[i++] & 0xff;
80 if ((b0 != e0) || (b1 != e1))
82 e0, e1, b0, b1);
87 int b1 = b[i++] & 0xff;
96 if ((b0 != e0) || (b1 != e1))
98 e0, e1, b0, b1);

Completed in 820 milliseconds

12345678910