Searched refs:b1 (Results 151 - 175 of 236) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DEUC_TW.java109 public char[] toUnicode(int b1, int b2, int p) { argument
110 return decode(b1, b2, p, c1, c2);
149 static char[] decode(int b1, int b2, int p, char[] c1, char[] c2) argument
151 if (b1 < b1Min || b1 > b1Max || b2 < b2Min || b2 > b2Max)
153 int index = (b1 - b1Min) * dbSegSize + b2 - b2Min;
523 for (int b1 = b1Min; b1 <= b1Max; b1++) {
529 c2bSupp0[index] = (char)((b1 <<
[all...]
H A DMS950_HKSCS_XP.java71 public char decodeDoubleEx(int b1, int b2) { argument
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DJIS0213.java181 for (int b1 = b1Min; b1 <= b1Max; b1++) {
183 writeShort(out, db[b1 * 256 + b2]);
H A DUtils.java184 public void format(char[] db, int b1, int b2Min, int b2Max, argument
190 cc[off++] = db[(b1 << 8) | b2];
/openjdk7/jdk/test/java/awt/Focus/ContainerFocusAutoTransferTest/
H A DContainerFocusAutoTransferTest.java150 if (!Util.trackFocusGained(frame.b1, action, 2000, false)) {
187 if (src == frame.b1 || src == frame.b2) {
200 public JButton b1 = new JButton("b1"); field in class:TestFrame
212 // that the next traversable component would be b1.
215 panel0.add(b1);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509Key.java455 byte[] b1 = getEncodedInternal();
456 int r = b1.length;
457 for (int i = 0; i < b1.length; i++) {
458 r += (b1[i] & 0xff) * 37;
/openjdk7/langtools/test/tools/javadoc/
H A DBooleanConst.java45 public static final boolean b1 = false; field in class:BooleanConst
58 if (f.name().equals("b1")) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DConstMethod.java193 int b1 = getBytecodeOrBPAt(bci + 3);
195 return (b4 << 24) | (b3 << 16) | (b2 << 8) | b1;
204 int b1 = getBytecodeOrBPAt(bci + 3);
207 return (b4 << 24) | (b3 << 16) | (b2 << 8) | b1;
209 return (b1 << 24) | (b2 << 16) | (b3 << 8) | b4;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec2_233.c204 mp_digit a3 = 0, a2 = 0, a1 = 0, a0, b3 = 0, b2 = 0, b1 = 0, b0; local
251 b1 = MP_DIGIT(b, 1);
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 Dmp_gf2m.c128 /* Compute xor-multiply of two binary polynomials (a1, a0) x (b1, b0)
133 s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1, argument
138 s_bmul_1x1(r+3, r+2, a1, b1);
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)
176 const mp_digit a0, const mp_digit b3, const mp_digit b2, const mp_digit b1,
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/corba/src/share/classes/com/sun/corba/se/impl/orbutil/threadpool/
H A DWorkQueueImpl.java81 LongMonitoredAttributeBase b1 = new
88 workqueueMonitoredObject.addAttribute(b1);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DByteVector.java119 * @param b1 a byte.
123 ByteVector put11(final int b1, final int b2) { argument
129 data[length++] = (byte) b1;
/openjdk7/jdk/test/java/awt/Graphics2D/DrawString/
H A DAlphaSurfaceText.java79 int b1 = (rgb1 & 0x0000ff);
80 int bdiff = b0-b1; if (bdiff<0) bdiff = -bdiff;
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSHeader.java333 int b1 = (bytes[i]>>4) & 0x0f;
336 sb.append(Integer.toHexString(b1));
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DImageComparator.java69 public boolean compare(double r1, double g1, double b1, argument
74 double d3 = Math.abs(b1 - b2);
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11CNS11643.java159 int b1 = (sa[sp] & 0xff) | 0x80;
161 char[] cc = toUnicode(b1, b2, plane);
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DTestIBMDB.java256 for (int b1 = 0x40; b1 < 0xff; b1++) {
258 // decodable singlebyte b1
259 bb[0] = (byte)b1;
265 System.out.printf(" b1=%x: %x/%d(old) %x/%d(new)%n",
266 b1 & 0xff,
276 bb[1] = (byte)b1;
280 bb[0] = (byte)b1;
292 b1, b
[all...]
/openjdk7/jdk/test/java/net/ipv6tests/
H A DTests.java126 byte[] b1 = p1.getData();
131 if (b1[i] != b2[i]) {
311 private static int bytes (byte b1, byte b2) { argument
312 int i1 = (int)b1 & 0xFF;
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DTlsPrfGenerator.java90 static byte[] concat(byte[] b1, byte[] b2) { argument
91 int n1 = b1.length;
94 System.arraycopy(b1, 0, b, 0, n1);
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.cpp228 double b1 = Sxy / Sxx; local
229 double b0 = y_avg - b1 * x_avg;
231 return b0 + b1 * num;
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/PBE/
H A DPKCS12CipherKAT.java54 int b1 = nextNibble(r);
55 if (b1 < 0) {
62 int b = (b1 << 4) | b2;
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RC2ArcFour/
H A DCipherKAT.java65 int b1 = nextNibble(r);
66 if (b1 < 0) {
73 int b = (b1 << 4) | b2;
184 t("RC4", "000102030405060708090a0b0c0d0e0f", "ad:79:9d:98:d6:38:b1:f8:05:96:5c:e6:75:e7:82:24", "0123456789abcdeffedcba9876543210"), // 128 bit
185 t("RC4", "74:95:c0:e4:14:4e:0e:7e:05:42:df:58:3e:82:10:f3 1b:34:61:29:05:0d:73:db:25:d0:dd:64:06:29:f6:8a ad:79:9d:98:d6:38:b1:f8:05:96:5c:e6:75:e7:82:24 ad:79:9d:98:d6:38:b1:f8:05:96:5c:e6:75:e7:82:24",
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/
H A DTestOAEP_KAT.java153 int b1 = nextNibble(r);
154 if (b1 < 0) {
161 int b = (b1 << 4) | b2;
H A DTestRSA.java66 int b1 = nextNibble(r);
67 if (b1 < 0) {
74 int b = (b1 << 4) | b2;
158 private final static String in1 = "17:a3:a7:b1:86:29:06:c5:81:33:cd:2f:da:32:7c:0e:26:a8:18:aa:37:9b:dd:4a:b0:b0:a7:1c:14:82:6c:d9:c9:14:9f:55:19:91:02:0d:d9:d7:95:c2:2b:a6:fa:ba:a3:51:00:83:6b:ec:97:27:40:a3:8f:ba:b1:09:15:11:44:33:c6:3c:47:95:50:71:50:5a:f4:aa:00:4e:b9:48:6a:b1:34:e9:d0:c8:b8:92:bf:95:f3:3d:91:66:93:2b";
162 private final static String rout1 = "4a:21:64:20:56:5f:27:0c:90:1d:f3:1b:64:8e:16:d3:af:79:ca:c6:65:56:19:77:8f:25:35:70:be:f3:15:b3:e3:d8:8f:04:ec:c3:60:59:d0:9a:66:be:1c:ad:f7:09:46:a9:09:46:12:5f:28:b6:28:b1:53:fb:fe:07:73:b8:8b:f8:83:64:8e:2d:45:ca:1a:fd:85:4a:2c:fa:fc:e6:58:f7:e4:83:68:8c:38:49:2b:f3:5c:c1:2d:24:6a:cd:22:6d:cb:f4:f1:8c:9e:1a:94:a7:4b:6f:d1:b4:b4:ab:56:8b:a3:a9:89:88:c3:5d:a8:47:2a:67:50:32:71:19";
165 private final static String rout2 = "65:28:b9:48:8d:68:3f:5e:9a:85:e7:09:78:4c:0c:0e:60:6c:89:43:3c:d3:72:b9:2f:5a:eb:4f:15:77:93:9d:47:05:a6:52:48:72:ee:ce:e8:5a:6d:28:b0:06:5a:a1:93:58:a1:61:3f:9b:42:0d:c1:ec:32:0a:7a:1e:38:45:47:87:52:16:62:c9:44:c6:04:4d:82:64:01:f4:b1:26:dc:7f:61:82:52:7a:f6:6b:ab:22:98:87:93:63:4c:3f:92:c7:5b:cc:e5:2b:15:db:f7:d3:c7:b5:38:6f:15:3b:1e:88:3d:31:0c:b4:f9:6d:66:41:b7:1b:a0:4a:b8:16";
/openjdk7/jdk/test/com/sun/crypto/provider/Mac/
H A DMacKAT.java65 int b1 = nextNibble(r);
66 if (b1 < 0) {
73 int b = (b1 << 4) | b2;
200 t("HmacSHA384", BLONG, "75:c4:ca:c7:f7:58:9d:d3:23:b1:1b:5c:93:2d:ec:7a:03:dc:8c:eb:8d:fe:79:46:4f:30:e7:99:62:de:44:e2:38:95:0e:79:91:78:2f:a4:05:0a:f0:17:10:38:a1:8e",

Completed in 96 milliseconds

12345678910