Searched refs:b0 (Results 1 - 25 of 59) sorted by relevance

123

/openjdk10/langtools/test/tools/javac/generics/wildcards/pos/
H A DBoundsCollision.java40 Box<? super Number> b0 = null;
41 Box<Number> b1 = b0;
42 b0.f(b1); // <<pass>>
/openjdk10/langtools/test/tools/javac/literals/
H A DBadBinaryLiterals.java10 int valid = 0b0; // valid literal, illegal in source 6
/openjdk10/jdk/test/javax/imageio/
H A DImageTypeSpecifierBitsPerBand.java41 int b0 = type.getBitsPerBand(0);
45 if (b0 != 5 || b1 != 6 || b2 != 5) {
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DCompressedReadStream.java60 int b0 = read();
61 if (b0 < L) {
62 return b0;
64 return readIntMb(b0);
109 private int readIntMb(int b0) { argument
111 int sum = b0;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/io/
H A DUTF8Reader.java156 int b0 = index == fOffset
158 if (b0 == -1) {
164 if (b0 < 0x80) {
165 c = (char)b0;
170 else if ((b0 & 0xE0) == 0xC0 && (b0 & 0x1E) != 0) {
179 c = ((b0 << 6) & 0x07C0) | (b1 & 0x003F);
184 else if ((b0 & 0xF0) == 0xE0) {
191 || (b0 == 0xED && b1 >= 0xA0)
192 || ((b0
[all...]
H A DUCSReader.java123 int b0 = fInputStream.read() & 0xff;
124 if (b0 == 0xff)
136 System.err.println("b0 is " + (b0 & 0xff) + " b1 " + (b1 & 0xff) + " b2 " + (b2 & 0xff) + " b3 " + (b3 & 0xff));
138 return (b0<<24)+(b1<<16)+(b2<<8)+b3;
140 return (b3<<24)+(b2<<16)+(b1<<8)+b0;
143 return (b0<<8)+b1;
145 return (b1<<8)+b0;
202 int b0 = fBuffer[curPos++] & 0xff;
208 ch[offset+i] = (char)((b0<<2
[all...]
H A DASCIIReader.java126 int b0 = fInputStream.read();
127 if (b0 >= 0x80) {
130 "InvalidASCII", new Object [] {Integer.toString(b0)});
132 return b0;
155 int b0 = fBuffer[i];
156 if (b0 < 0) {
159 "InvalidASCII", new Object [] {Integer.toString(b0 & 0x0FF)});
161 ch[offset + i] = (char)b0;
/openjdk10/jdk/test/java/awt/Focus/RequestFocusToDisabledCompTest/
H A DRequestFocusToDisabledCompTest.java45 JButton b0 = new JButton("b0"); field in class:RequestFocusToDisabledCompTest
56 frame.add(b0);
67 if (!b0.hasFocus()) {
68 // Request focus on b0.
69 if (!Util.focusComponent(b0, 2000)) {
70 throw new TestErrorException("couldn't focus " + b0);
/openjdk10/hotspot/src/share/vm/code/
H A DcompressedStream.hpp86 jint read_int_mb(jint b0) { argument
89 assert(buf[0] == b0 && b0 >= L, "correctly called");
90 jint sum = b0;
112 jint read_int() { jint b0 = read(); local
113 if (b0 < L) return b0;
114 else return read_int_mb(b0);
/openjdk10/jdk/test/java/awt/Focus/RestoreFocusOnDisabledComponentTest/
H A DRestoreFocusOnDisabledComponentTest.java45 Button b0 = new Button("button0") {public String toString() {return "B-0";}}; field in class:RestoreFocusOnDisabledComponentTest
61 frame.add(b0);
73 // FOCUS_GAINED event. The latter is a result of disabling b0 that initiates
78 } else if (e.getSource() == b0) {
90 // be disabled. This will trigger focus restoring. Focus will be requested to b0 (the
91 // last opposite component). When FOCUS_GAINED is being dispatched to b0, it will
93 // will still be b0. When DKFM initiates focus restoring it should detect restoring
95 b0.setEnabled(false);
/openjdk10/nashorn/test/script/basic/es6/
H A Dnumeric-literals.js37 assertEquals(0b0, 0);
/openjdk10/jdk/test/java/awt/Focus/6981400/
H A DTest3.java48 static JButton b0 = new JButton("b0"); field in class:Test3
70 b0.addFocusListener(new FocusAdapter() {
82 f.add(b0);
90 if (!b0.hasFocus()) {
91 Util.clickOnComp(b0, robot);
93 if (!b0.hasFocus()) {
94 throw new RuntimeException("Error: can't focus " + b0);
/openjdk10/jdk/test/java/io/
H A DUnicode.java49 static void fail(String enc, String msg, int e0, int e1, int b0, int b1) argument
57 + Integer.toHexString(b0)
70 int b0 = b[i++] & 0xff;
80 if ((b0 != e0) || (b1 != e1))
82 e0, e1, b0, b1);
86 int b0 = b[i++] & 0xff;
96 if ((b0 != e0) || (b1 != e1))
98 e0, e1, b0, b1);
/openjdk10/langtools/test/tools/javac/
H A DCloneableProblem.java70 B b0 = new CloneableProblem(0);
71 B b1 = (B) b0.clone();
/openjdk10/jdk/test/java/awt/Focus/NoAutotransferToDisabledCompTest/
H A DNoAutotransferToDisabledCompTest.java45 JButton b0 = new JButton("b0"); field in class:NoAutotransferToDisabledCompTest
57 frame.add(b0);
85 // Check that focus has been transfered to b0.
86 if (!b0.hasFocus()) {
/openjdk10/jdk/test/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java282 int b0, b1, b2, b3;
285 b0 = in.read ();
290 if (b0 < 0 || b1 < 0 || b2 < 0 || b3 < 0)
294 System.out.println ("READ: b0 = " + b0 + ", b1 = " + b1
301 n |= (b0 & 0x0ff) << 24;
308 int b0, b1, b2, b3;
316 b0 = n & 0x0ff;
319 System.out.println ("WRITE: b0 = " + b0
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/imageio/stream/
H A DImageInputStreamImpl.java464 int b0 = b[boff];
466 s[off + j] = (short)((b0 << 8) | b1);
471 int b0 = b[boff + 1];
473 s[off + j] = (short)((b0 << 8) | b1);
483 int b0 = b[boff];
485 c[off + j] = (char)((b0 << 8) | b1);
490 int b0 = b[boff + 1];
492 c[off + j] = (char)((b0 << 8) | b1);
502 int b0 = b[boff];
506 i[off + j] = (b0 << 2
[all...]
/openjdk10/jdk/src/jdk.crypto.ec/share/native/libsunec/impl/
H A Dmp_gf2m-priv.h79 /* Compute xor-multiply of two binary polynomials (a1, a0) x (b1, b0)
84 const mp_digit b0);
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)
99 const mp_digit b0);
H A Decl_gf.c612 mp_digit b0 = 0, b1 = 0, b2 = 0; local
630 b0 = MP_DIGIT(b,0);
634 MP_SUB_BORROW(r0, b0, r0, 0, borrow);
645 : "r" (b0), "r" (b1), "r" (b2),
655 b0 = MP_DIGIT(&meth->irr,0);
657 MP_ADD_CARRY_ZERO(b0, r0, r0, borrow);
666 : "r" (b0), "r" (b1), "r" (b2),
674 if ((r2 == b0) && (r1 == b0) && (r0 == b0)) {
696 mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0; local
789 mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0, b4 = 0; local
857 mp_digit b0 = 0, b1 = 0, b2 = 0, b3 = 0, b4 = 0, b5 = 0; local
[all...]
/openjdk10/jdk/src/java.desktop/unix/native/libawt/java2d/loops/
H A Dvis_Interp.c56 b0 = vis_fmul8x16au(vis_read_hi(b01), vis_read_lo(xr)); \
60 b0 = vis_fpadd16(b0, b1); \
62 b2 = vis_fpsub16(b2, b0); \
64 b0 = vis_fmul8x16(mask40, b0); \
65 b0 = vis_fpadd16(b0, b2); \
66 b0 = vis_fpadd16(b0, d_rn
79 mlib_d64 b01, b23, b0, b1, b2, b3; local
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeTextReader.java304 final int b0 = b[0] & 0xFF;
307 if (b0 != 0xEF || b1 != 0xBB || b2 != 0xBF) {
319 final int b0 = b[0] & 0xFF;
321 if (b0 == 0xFE && b1 == 0xFF) {
324 else if (b0 == 0xFF && b1 == 0xFE) {
352 int b0 = b4[0] & 0xFF;
354 if (b0 == 0xFE && b1 == 0xFF) {
358 if (b0 == 0xFF && b1 == 0xFE) {
365 if (b0 == 0xEF && b1 == 0xBB && b2 == 0xBF) {
371 if (b0
[all...]
/openjdk10/jdk/test/java/awt/Focus/ContainerFocusAutoTransferTest/
H A DContainerFocusAutoTransferTest.java145 frame.b0.setEnabled(false);
148 frame.b0.setFocusable(false);
174 if (!frame.b0.hasFocus()) {
175 Util.clickOnComp(frame.b0, robot);
177 if (!frame.b0.hasFocus()) {
200 public JButton b0 = new JButton("b0"); field in class:TestFrame
212 // We want that the focus owner (b0) would be removed first and
217 panel0.add(b0);
/openjdk10/jdk/src/jdk.jdi/windows/classes/com/sun/tools/jdi/
H A DSharedMemoryConnection.java113 int b0 = b[0] & 0xff;
117 int len = ((b0 << 24) | (b1 << 16) | (b2 << 8) | (b3 << 0));
/openjdk10/jdk/test/javax/imageio/stream/
H A DStreamFlush.java84 byte[] b0 = baos.toByteArray();
85 int cacheNoFlushLength = b0.length;
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DBase64.java420 int b0 = src[sp++] & 0xff;
421 dst[dp++] = (byte)base64[b0 >> 2];
423 dst[dp++] = (byte)base64[(b0 << 4) & 0x3f];
430 dst[dp++] = (byte)base64[(b0 << 4) & 0x3f | (b1 >> 4)];
755 private int b0, b1, b2; field in class:Base64.EncOutputStream
807 out.write(base64[b0 >> 2]);
808 out.write(base64[(b0 << 4) & 0x3f | (b1 >> 4)]);
827 b0 = b[off++] & 0xff;
829 b0 = b[off++] & 0xff;
840 out.write(base64[b0 >>
[all...]

Completed in 325 milliseconds

123