Searched defs:b0 (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/test/java/awt/Focus/NoAutotransferToDisabledCompTest/
H A DNoAutotransferToDisabledCompTest.java44 JButton b0 = new JButton("b0"); field in class:NoAutotransferToDisabledCompTest
56 frame.add(b0);
84 // Check that focus has been transfered to b0.
85 if (!b0.hasFocus()) {
/openjdk7/jdk/test/java/awt/Focus/RequestFocusToDisabledCompTest/
H A DRequestFocusToDisabledCompTest.java44 JButton b0 = new JButton("b0"); field in class:RequestFocusToDisabledCompTest
55 frame.add(b0);
66 if (!b0.hasFocus()) {
67 // Request focus on b0.
68 if (!Util.focusComponent(b0, 2000)) {
69 throw new TestErrorException("couldn't focus " + b0);
/openjdk7/jdk/test/java/awt/Focus/RestoreFocusOnDisabledComponentTest/
H A DRestoreFocusOnDisabledComponentTest.java44 Button b0 = new Button("button0") {public String toString() {return "B-0";}}; field in class:RestoreFocusOnDisabledComponentTest
60 frame.add(b0);
72 // FOCUS_GAINED event. The latter is a result of disabling b0 that initiates
77 } else if (e.getSource() == b0) {
89 // be disabled. This will trigger focus restoring. Focus will be requested to b0 (the
90 // last opposite component). When FOCUS_GAINED is being dispatched to b0, it will
92 // will still be b0. When DKFM initiates focus restoring it should detect restoring
94 b0.setEnabled(false);
/openjdk7/hotspot/agent/src/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;
/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
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);
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec2_163.c177 mp_digit a2 = 0, a1 = 0, a0, b2 = 0, b1 = 0, b0; local
217 b0 = MP_DIGIT(b, 0);
221 s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0); local
227 s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0); local
229 b3 ^ b0);
H A Dec2_193.c186 mp_digit a3 = 0, a2 = 0, a1 = 0, a0, b3 = 0, b2 = 0, b1 = 0, b0; local
230 b0 = MP_DIGIT(b, 0);
234 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); local
240 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); local
242 b4 ^ b0);
H A Dec2_233.c204 mp_digit a3 = 0, a2 = 0, a1 = 0, a0, b3 = 0, b2 = 0, b1 = 0, b0; local
253 b0 = MP_DIGIT(b, 0);
257 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); local
263 s_bmul_4x4(MP_DIGITS(r), a3, a2, a1, a0, b3, b2, b1, b0); local
265 b6 ^ b2, b5 ^ b1, b4 ^ 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...]
H A Decp_192.c376 mp_digit b0 = 0, b1 = 0, b2 = 0; local
395 b0 = MP_DIGIT(b,0);
399 MP_SUB_BORROW(r0, b0, r0, 0, borrow);
410 : "r" (b0), "r" (b1), "r" (b2), "0" (r0),
H A Dmp_gf2m.c128 /* Compute xor-multiply of two binary polynomials (a1, a0) x (b1, b0)
134 const mp_digit b0)
139 s_bmul_1x1(r+1, r, a0, b0);
140 s_bmul_1x1(&m1, &m0, a0 ^ a1, b0 ^ b1);
146 /* Compute xor-multiply of two binary polynomials (a2, a1, a0) x (b2, b1, b0)
152 const mp_digit b2, const mp_digit b1, const mp_digit b0)
157 s_bmul_2x2(zm, a1, a2^a0, b1, b2^b0); /* fill middle 4 words */
158 s_bmul_2x2(r, a1, a0, b1, b0); /* fill bottom 4 words */
171 /* Compute xor-multiply of two binary polynomials (a3, a2, a1, a0) x (b3, b2, b1, b0)
177 const mp_digit b0)
133 s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1, const mp_digit b0) argument
151 s_bmul_3x3(mp_digit *r, const mp_digit a2, const mp_digit a1, const mp_digit a0, const mp_digit b2, const mp_digit b1, const mp_digit b0) argument
175 s_bmul_4x4(mp_digit *r, const mp_digit a3, const mp_digit a2, const mp_digit a1, const mp_digit a0, const mp_digit b3, const mp_digit b2, const mp_digit b1, const mp_digit b0) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DcompressedStream.hpp69 jint read_int_mb(jint b0); // UNSIGNED5 coding, 2-5 byte cases
79 jint read_int() { jint b0 = read(); local
80 if (b0 < L) return b0;
81 else return read_int_mb(b0);
H A DcompressedStream.cpp147 jint CompressedReadStream::read_int_mb(jint b0) { argument
150 assert(buf[0] == b0 && b0 >= L, "correctly called");
151 jint sum = b0;
/openjdk7/jdk/test/java/awt/Focus/ContainerFocusAutoTransferTest/
H A DContainerFocusAutoTransferTest.java144 frame.b0.setEnabled(false);
147 frame.b0.setFocusable(false);
173 if (!frame.b0.hasFocus()) {
174 Util.clickOnComp(frame.b0, robot);
176 if (!frame.b0.hasFocus()) {
199 public JButton b0 = new JButton("b0"); field in class:TestFrame
211 // We want that the focus owner (b0) would be removed first and
216 panel0.add(b0);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextFieldUI.java354 * @param b0 the bias toward the previous character or the
368 public Shape modelToView(int p0, Position.Bias b0, argument
372 return super.modelToView(p0, b0, p1, b1, adjustAllocation(a));
H A DBasicHTML.java532 * @param b0 the bias toward the previous character or the
546 public Shape modelToView(int p0, Position.Bias b0, int p1, argument
548 return view.modelToView(p0, b0, p1, b1, a);
H A DBasicTextUI.java1519 * @param b0 the bias toward the previous character or the
1533 public Shape modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) throws BadLocationException { argument
1535 return view.modelToView(p0, b0, p1, b1, a);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DCompositeView.java284 * @param b0 the bias toward the previous character or the
300 public Shape modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) throws BadLocationException { argument
306 View v0 = getViewAtPosition((b0 == Position.Bias.Backward) ?
316 return v0.modelToView(p0, b0, p1, b1, r0);
331 retRect = v0.modelToView(p0, b0, v0.getEndOffset(),
360 endShape = v0.modelToView(p0, b0, v0.getEndOffset(),
H A DView.java596 * @param b0 the bias of the first character position,
599 * position is a boundary of two views; <code>b0</code> will have one
613 * @exception IllegalArgumentException if <code>b0</code> or
618 public Shape modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) throws BadLocationException { argument
619 Shape s0 = modelToView(p0, a, b0);
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.cpp229 double b0 = y_avg - b1 * x_avg; local
231 return b0 + b1 * num;
/openjdk7/jdk/src/solaris/native/sun/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...]
/openjdk7/jdk/src/share/classes/java/nio/
H A DBits.java62 static private char makeChar(byte b1, byte b0) { argument
63 return (char)((b1 << 8) | (b0 & 0xff));
134 static private short makeShort(byte b1, byte b0) { argument
135 return (short)((b1 << 8) | (b0 & 0xff));
206 static private int makeInt(byte b3, byte b2, byte b1, byte b0) { argument
210 ((b0 & 0xff) ));
300 byte b3, byte b2, byte b1, byte b0)
309 (((long)b0 & 0xff) ));
299 makeLong(byte b7, byte b6, byte b5, byte b4, byte b3, byte b2, byte b1, byte b0) argument
/openjdk7/jdk/test/com/sun/jdi/
H A DAccessSpecifierTest.java58 public byte b0; field in class:AccessSpecifierTarg
59 byte b1[]={b0}, b2[][]={b1};
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp4272 unsigned char b0 = buffer[i]; local
4279 unsigned char res = b0 | b0 - 1 |

Completed in 138 milliseconds