Searched refs:b1 (Results 201 - 225 of 236) sorted by relevance

12345678910

/openjdk7/jdk/src/windows/classes/com/sun/tools/jdi/
H A DSharedMemoryTransportService.java251 int b1 = b[1] & 0xff;
254 int len = ((b0 << 24) | (b1 << 16) | (b2 << 8) | (b3 << 0));
/openjdk7/jdk/test/com/sun/jdi/
H A DAccessSpecifierTest.java59 byte b1[]={b0}, b2[][]={b1}; field in class:AccessSpecifierTarg
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DEncTicketPart.java126 int b1 = (bytes[i] >> 4) & 0x0f;
129 sb.append(Integer.toHexString(b1));
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDRInputStream_1_0.java438 int b1, b2;
445 b1 = bbwi.byteBuffer.get(bbwi.position()) & 0x00FF;
448 b1 = bbwi.byteBuffer.get(bbwi.position()) & 0x00FF;
454 return (char)((b1 << 8) + (b2 << 0));
468 int b1, b2;
475 b1 = (bbwi.byteBuffer.get(bbwi.position()) << 8) & 0x0000FF00;
478 b1 = (bbwi.byteBuffer.get(bbwi.position()) << 8) & 0x0000FF00;
484 return (short)(b1 | b2);
492 int b1, b2, b3, b4;
501 b1
[all...]
H A DCodeSetConversion.java481 int b1 = array[offset] & 0x00FF;
484 char marker = (char)((b1 << 8) | (b2 << 0));
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DView.java606 * @param b1 the bias for the second character position, defined
614 * <code>b1</code> are not one of the
618 public Shape modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) throws BadLocationException { argument
623 s1 = modelToView(p1, a, b1);
636 s1 = modelToView(p1, a, b1);
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectInputStream.java3088 int b1, b2, b3;
3089 b1 = buf[pos++] & 0xFF;
3090 switch (b1 >> 4) {
3099 cbuf[cpos++] = (char) b1;
3108 cbuf[cpos++] = (char) (((b1 & 0x1F) << 6) |
3119 cbuf[cpos++] = (char) (((b1 & 0x0F) << 12) |
3156 int b1, b2, b3;
3157 b1 = readByte() & 0xFF;
3158 switch (b1 >> 4) {
3167 sbuf.append((char) b1);
[all...]
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DDrawBufImgOp.java393 int b1 = c1.getBlue();
405 b1 >= bmin && b1 <= bmax)
/openjdk7/hotspot/src/share/vm/libadt/
H A Dport.hpp147 extern "C" void bcopy(void *b1, void *b2, int len);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityScanner.java1934 int b1 = b4[1] & 0xFF;
1935 if (b0 == 0xFE && b1 == 0xFF) {
1939 if (b0 == 0xFF && b1 == 0xFE) {
1952 if (b0 == 0xEF && b1 == 0xBB && b2 == 0xBF) {
1964 if (b0 == 0x00 && b1 == 0x00 && b2 == 0x00 && b3 == 0x3C) {
1968 if (b0 == 0x3C && b1 == 0x00 && b2 == 0x00 && b3 == 0x00) {
1972 if (b0 == 0x00 && b1 == 0x00 && b2 == 0x3C && b3 == 0x00) {
1977 if (b0 == 0x00 && b1 == 0x3C && b2 == 0x00 && b3 == 0x00) {
1982 if (b0 == 0x00 && b1 == 0x3C && b2 == 0x00 && b3 == 0x3F) {
1988 if (b0 == 0x3C && b1
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/threadpool/
H A DThreadPoolImpl.java199 LongMonitoredAttributeBase b1 = new
206 threadpoolMonitoredObject.addAttribute(b1);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicCDebugInfoDataBase.java142 BlockSym b1 = (BlockSym) o1;
144 Address a1 = b1.getAddress();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicHTML.java536 * @param b1 the bias toward the previous character or the
547 Position.Bias b1, Shape a) throws BadLocationException {
548 return view.modelToView(p0, b0, p1, b1, a);
546 modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) argument
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolParser.java311 int b1 = getUnsignedByte(buffer);
313 return (b1 << 8) + (b2 << 0);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/
H A DPolicyUtils.java183 * @return {@code -1} if {@code b1 < b2}, {@code 0} if {@code b1 == b2}, {@code 1} if {@code b1 > b2}
185 public static int compareBoolean(final boolean b1, final boolean b2) { argument
186 final int i1 = (b1) ? 1 : 0;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DMessageBase.java163 int b1, b2, b3, b4;
165 b1 = (buf.get(0) << 24) & 0xFF000000;
169 int magic = (b1 | b2 | b3 | b4);
880 private static int readSize(byte b1, byte b2, byte b3, byte b4, argument
886 a1 = (b1 << 24) & 0xFF000000;
894 a4 = (b1 << 0) & 0x000000FF;
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c313 #define CLIP(a1, b1, a2, b2, t) \
314 (b1 + ((jdouble)(t - a1)*(b2 - b1)) / (a2 - a1))
325 #define TESTANDCLIP(LINE_MIN, LINE_MAX, a1, b1, a2, b2, TYPE, res) \
345 b1 = (TYPE)CLIP(a1, b1, a2, b2, t); \
371 #define CLIPCLAMP(LINE_MIN, LINE_MAX, a1, b1, a2, b2, a3, b3, TYPE, res) \
374 b3 = b1; \
375 TESTANDCLIP(LINE_MIN, LINE_MAX, a1, b1, a2, b2, TYPE, res); \
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Key.java173 byte[] b1 = getEncodedInternal();
174 if (b1 == null) {
177 int r = b1.length;
178 for (int i = 0; i < b1.length; i++) {
179 r += (b1[i] & 0xff) * 37;
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c602 char b1 = s[++i]; local
604 int decoded = decodeByte(b1, b2);
/openjdk7/langtools/test/tools/javac/literals/
H A DUnderscoreLiterals.java114 test(0b1, 1);
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.cpp1109 Block *b1 = tr1->first_block();
1113 if (b0->is_connector() != b1->is_connector()) {
1114 return b1->is_connector() ? -1 : 1;
1119 float freq1 = b1->_freq;
H A Dgcm.cpp150 // Check this by by seeing that it is dominated by b1, the deepest
152 static void assert_dom(Block* b1, Block* b2, Node* n, Block_Array &bbs) { argument
153 if (b1 == NULL) return;
154 assert(b1->_dom_depth < b2->_dom_depth, "sanity");
156 while (tmp != b1 && tmp != NULL) {
159 if (tmp != b1) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DORBUtility.java197 int b1, b2, b3, b4;
199 b1 = (array[offset++] << 24) & 0xFF000000;
204 return (b1 | b2 | b3 | b4);
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmspcs.c614 cmsFloat64Number b1 = Lab1->b; local
615 cmsFloat64Number C = sqrt( Sqr(a1) + Sqr(b1) );
625 cmsFloat64Number b_p = b1;
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java209 int b1 = value[i] + 0x80000000;
211 if (b1 < b2)
213 if (b1 > b2)

Completed in 135 milliseconds

12345678910