Searched refs:b1 (Results 101 - 125 of 236) sorted by relevance

12345678910

/openjdk7/jdk/test/sun/security/pkcs11/KeyAgreement/
H A DTestDH.java107 byte[] b1 = key1.getEncoded();
110 if (Arrays.equals(b1, b2) == false) {
111 System.out.println(b1.length + " bytes: " + toString(b1));
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DCharsetMapping.java66 public char decodeDouble(int b1, int b2) { argument
69 if (b1 >= b1MinDB1 && b1 <= b1MaxDB1) {
70 b1 -= b1MinDB1;
71 return b2cDB1[b1 * dbSegSize + b2];
73 if (b1 >= b1MinDB2 && b1 <= b1MaxDB2) {
74 b1 -= b1MinDB2;
75 return b2cDB2[b1 * dbSegSize + b2];
260 int b1
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DEUC_JP_LINUX.java117 int b1 = 0, b2 = 0;
123 b1 = sa[sp] & 0xff;
125 if ((b1 & 0x80) == 0) {
126 outputChar = (char)b1;
129 if ((b1 & 0xff) == 0x8f) { // JIS0212
140 outputChar = decodeDouble(b1, b2);
166 int b1 = src.get() & 0xff;
169 if ((b1 & 0x80) == 0) {
170 outputChar = (char)b1;
173 if ((b1
[all...]
H A DSJIS_0213.java103 int b1 = sa[sp] & 0xff;
104 char c = decodeSingle(b1);
111 c = decodeDouble(b1, b2);
114 cc = decodeDoubleEx(b1, b2);
146 int b1 = src.get() & 0xff;
147 char c = decodeSingle(b1);
154 c = decodeDouble(b1, b2);
156 cc = decodeDoubleEx(b1, b2);
193 protected char decodeDouble(int b1, int b2) { argument
194 return mapping.decodeDouble(b1, b
199 decodeDoubleEx(int b1, int b2) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharDBCS_ASCII.java47 char decodeDouble(int b1, int b2) { argument
48 return dec.decodeDouble(b1, b2);
H A DByteToCharEUC2.java51 char decodeDouble(int b1, int b2) { argument
52 return dec.decodeDouble(b1, b2);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactParseable.java126 int b1 = in.read();
127 if (b1 != -1) {
131 if ((b1 == 0xFF && b2 == 0xFE) || (b1 == 0xFE && b2 == 0xFF))
134 in.unread(b1);
/openjdk7/jdk/test/sun/security/pkcs11/Cipher/
H A DTestSymmCiphers.java250 private static void match(byte[] b1, byte[] b2) throws Exception { argument
251 if (b1.length != b2.length) {
252 debugOut("got len : " + b1.length + "\n");
254 throw new Exception("mismatch - different length! got: " + b1.length + ", expect: " + b2.length + "\n");
256 for (int i = 0; i < b1.length; i++) {
257 if (b1[i] != b2[i]) {
258 debugOut("got : " + toString(b1) + "\n");
H A DTestRSACipher.java115 private static void match(byte[] b1, byte[] b2) throws Exception { argument
116 if (Arrays.equals(b1, b2) == false) {
117 System.out.println(toString(b1));
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPacketStream.java314 int b1, b2;
316 b1 = pkt.data[inCursor++] & 0xff;
319 return (char)((b1 << 8) + b2);
326 int b1, b2;
328 b1 = pkt.data[inCursor++] & 0xff;
331 return (short)((b1 << 8) + b2);
338 int b1,b2,b3,b4;
340 b1 = pkt.data[inCursor++] & 0xff;
345 return ((b1 << 24) + (b2 << 16) + (b3 << 8) + b4);
352 long b1,b
[all...]
/openjdk7/jdk/test/sun/security/smartcardio/
H A DUtils.java97 int b1 = nextNibble(r);
98 if (b1 < 0) {
105 int b = (b1 << 4) | b2;
/openjdk7/jdk/test/javax/crypto/EncryptedPrivateKeyInfo/
H A DGetKeySpec.java66 int b1 = nextNibble(r);
67 if (b1 < 0) {
74 int b = (b1 << 4) | b2;
H A DGetKeySpecInvalidEncoding.java67 int b1 = nextNibble(r);
68 if (b1 < 0) {
75 int b = (b1 << 4) | b2;
/openjdk7/jdk/test/javax/smartcardio/
H A DSerialize.java105 int b1 = nextNibble(r);
106 if (b1 < 0) {
113 int b = (b1 << 4) | b2;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DDecoder.java1470 int b1;
1472 b1 = _octetBuffer[_octetBufferOffset++] & 0xFF;
1473 if (DecoderStateTables.UTF8(b1) == DecoderStateTables.UTF8_ONE_BYTE) {
1474 _charBuffer[_charBufferLength++] = (char) b1;
1476 decodeTwoToFourByteUtf8Character(b1, end);
1484 int b1;
1486 b1 = _octetBuffer[_octetBufferOffset++] & 0xFF;
1487 if (DecoderStateTables.UTF8(b1) == DecoderStateTables.UTF8_ONE_BYTE) {
1488 ch[_charBufferLength++] = (char) b1;
1490 decodeTwoToFourByteUtf8Character(ch, b1, en
1496 decodeTwoToFourByteUtf8Character(int b1, int end) argument
1541 decodeTwoToFourByteUtf8Character(char ch[], int b1, int end) argument
1611 decodeUtf8NCNameStartTwoToFourByteCharacters(int b1, int end) argument
1660 decodeUtf8NCNameTwoToFourByteCharacters(int b1, int end) argument
1707 decodeUtf8ThreeByteChar(int end, int b1) argument
1737 decodeUtf8FourByteChar(int end, int b1) argument
1982 arrayEquals(byte[] b1, int offset, byte[] b2, int length) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djquant2.c434 register boxptr b1,b2; local
441 b1 = find_biggest_color_pop(boxlist, numboxes);
443 b1 = find_biggest_volume(boxlist, numboxes);
445 if (b1 == NULL) /* no splittable boxes left! */
449 b2->c0max = b1->c0max; b2->c1max = b1->c1max; b2->c2max = b1->c2max;
450 b2->c0min = b1->c0min; b2->c1min = b1->c1min; b2->c2min = b1
[all...]
/openjdk7/langtools/test/tools/javac/
H A DCloneableProblem.java71 B b1 = (B) b0.clone();
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11GB2312.java108 protected char decodeDouble(int b1, int b2) { argument
109 return dec.decodeDouble(b1, b2);
129 int b1 = sa[sp] & 0xFF | 0x80;
131 char c = decodeDouble(b1, b2);
H A DX11KSC5601.java107 protected char decodeDouble(int b1, int b2) { argument
108 return dec.decodeDouble(b1, b2);
129 int b1 = sa[sp] & 0xFF | 0x80;
131 char c = decodeDouble(b1, b2);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixups.java172 byte b1 = bytes[loc];
173 assert(b1 != OVERFLOW_BYTE);
177 value = ((b1 & 0xFF) << 8) + (b2 & 0xFF);
179 value = (b1 & 0xFF);
188 byte b1, b2;
193 b1 = (byte)(value >> 8);
195 if (value == (value & 0xFFFF) && b1 != OVERFLOW_BYTE) {
196 bytes[loc+0] = b1;
204 b1 = (byte)value;
205 if (value == (value & 0xFF) && b1 !
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpIpAddress.java88 * @param b1 Byte 1.
94 public SnmpIpAddress(long b1, long b2, long b3, long b4) { argument
95 super(b1, b2, b3, b4) ;
/openjdk7/jdk/test/com/sun/jdi/
H A DLineNumberOnBraceTest.java33 boolean b1 = false;
34 if (b1) { // stopLine2
/openjdk7/jdk/test/java/util/concurrent/Semaphore/
H A DRacingReleases.java73 Thread b1 = new Thread(blocker);
85 Thread[] threads = { b1, b2, s1, s2 };
/openjdk7/langtools/test/tools/javac/multicatch/
H A DPos05.java46 void test(boolean b1, boolean b2) { argument
48 if (b1) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DBase64Data.java360 byte b1,b2;
367 b1 = data[base+1];
369 b1 = 0;
372 ((b1>>4)&0xF));
375 b1 = data[base+1];
382 ((b1&0xF)<<2)|

Completed in 1201 milliseconds

12345678910