HomeSort by relevance Sort by last modified time
    Searched refs:b1 (Results 76 - 100 of 294) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHello.java 103 byte b1 = (byte) in.read();
104 cipher_suites[i] = CipherSuite.getByCode(b0, b1);
148 byte b1 = (byte) in.read();
150 cipher_suites[i] = CipherSuite.getByCode(b0, b1, b2);
ServerHello.java 94 byte b1 = (byte) in.read();
95 cipher_suite = CipherSuite.getByCode(b0, b1);
  /external/iproute2/tc/
q_sfq.c 85 SPRINT_BUF(b1);
94 fprintf(f, "quantum %s ", sprint_size(qopt->quantum, b1));
q_htb.c 37 "... class add ... htb rate R1 [burst B1] [mpu B] [overhead O]\n"
249 SPRINT_BUF(b1);
268 fprintf(f, "rate %s ", sprint_rate(hopt->rate.rate, b1));
270 fprintf(f, "ceil %s ", sprint_rate(hopt->ceil.rate, b1));
274 sprint_size(buffer, b1),
279 sprint_size(cbuffer, b1),
285 fprintf(f, "burst %s ", sprint_size(buffer, b1));
286 fprintf(f, "cburst %s ", sprint_size(cbuffer, b1));
m_gact.c 208 SPRINT_BUF(b1);
228 fprintf(f, "gact action %s", action_n2a(p->action, b1, sizeof (b1)));
  /frameworks/base/media/libstagefright/colorconversion/
ColorConverter.cpp 115 signed b1 = (tmp1 + u_b) / 256; local
127 | (kAdjustedClip[b1] >> 3);
193 signed b1 = (tmp1 + u_b) / 256; local
205 | (kAdjustedClip[b1] >> 3);
256 signed b1 = (tmp1 + u_b) / 256; local
266 ((kAdjustedClip[b1] >> 3) << 11)
318 signed b1 = (tmp1 + u_b) / 256; local
328 ((kAdjustedClip[b1] >> 3) << 11)
  /packages/apps/Gallery3D/src/com/cooliris/media/
Util.java 111 Bitmap b1; local
114 b1 = Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(), scaler, true);
116 b1 = source;
119 int dx1 = Math.max(0, b1.getWidth() - targetWidth);
120 int dy1 = Math.max(0, b1.getHeight() - targetHeight);
122 Bitmap b2 = Bitmap.createBitmap(b1, dx1 / 2, dy1 / 2, targetWidth, targetHeight);
124 if (b1 != source) {
125 b1.recycle();
  /external/emma/core/java12/com/vladium/util/
ByteArrayOStream.java 49 public final void write2 (final int b1, final int b2)
68 mbuf [pos] = (byte) b1;
73 public final void write3 (final int b1, final int b2, final int b3)
92 mbuf [pos] = (byte) b1;
98 public final void write4 (final int b1, final int b2, final int b3, final int b4)
117 mbuf [pos] = (byte) b1;
  /external/icu4c/test/intltest/
nptrans.cpp 201 UChar *b1 = b1String.getBuffer(MAX_BUFFER_SIZE); local
208 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
214 b1 = b1String.getBuffer(b1Len);
216 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
230 U16_NEXT(b1, b1Index, b1Len, ch);
267 uprv_memmove(dest,b1, b1Len*U_SIZEOF_UCHAR);
  /external/webkit/JavaScriptCore/wtf/unicode/
UTF8.cpp 64 const unsigned char b1 = sequence[1]; local
66 if (b1)
72 if ((b1 & 0xC0) != 0x80)
78 const int c = ((b0 & 0x1F) << 6) | (b1 & 0x3F);
91 const int c = ((b0 & 0xF) << 12) | ((b1 & 0x3F) << 6) | (b2 & 0x3F);
107 const int c = ((b0 & 0x7) << 18) | ((b1 & 0x3F) << 12) | ((b2 & 0x3F) << 6) | (b3 & 0x3F);
  /frameworks/base/opengl/libagl/
dxt.cpp 102 int b1 = (x >> 16) & 0xff; local
106 return (uint32_t)((b3 << 24) | (b2 << 16) | (b1 << 8) | b0);
167 // bits: b31 b30 b29 ... b3 b2 b1 b0
168 // bits >> 1: b31 b31 b30 ... b4 b3 b2 b1
169 // &: b31 (b31 & b30) (b29 & b28) ... (b2 & b1) (b1 & b0)
170 // & 0x55..: 0 (b31 & b30) 0 ... 0 (b1 & b0)
241 int b1 = blue(color1); local
245 c[1] = (r1 << 11) | ((g1 >> 1) << 6) | (b1 << 1) | 0x1;
261 b2 = avg23(b0, b1);
371 int b1 = blue(color1); local
528 int b1 = blue(color1); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 653 byte[] b1 = new byte[30];
657 c.update(b, 0, 10, b1, 5);
675 c.doFinal(b, 0, 16, b1, 0);
685 c.update(b1, 0, 24, b, 0);
753 byte[] b1 = new byte[6];
757 c.update(b, 0, 10, b1, 5);
765 c.update(b, 0, 10, b1, 5);
771 b1 = new byte[30];
772 c.update(b, 0, 10, b1, 5);
795 byte[] b1 = new byte[30]
    [all...]
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 399 Bitmap b1; local
402 b1 = Bitmap.createBitmap(source, 0, 0,
405 b1 = source;
408 if (recycle && b1 != source) {
412 int dx1 = Math.max(0, b1.getWidth() - targetWidth);
413 int dy1 = Math.max(0, b1.getHeight() - targetHeight);
416 b1,
422 if (b2 != b1) {
423 if (recycle || b1 != source) {
424 b1.recycle()
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
Util.java 211 Bitmap b1; local
214 b1 = Bitmap.createBitmap(source, 0, 0,
217 b1 = source;
220 if (recycle && b1 != source) {
224 int dx1 = Math.max(0, b1.getWidth() - targetWidth);
225 int dy1 = Math.max(0, b1.getHeight() - targetHeight);
228 b1,
234 if (b2 != b1) {
235 if (recycle || b1 != source) {
236 b1.recycle()
    [all...]
  /external/libvpx/vp8/common/arm/armv6/
idct_v6.asm 74 sub r7, r7, r8 ; b1 = [0] - [8] 1 b1
79 add r8, r7, r11 ; b1 + c1 1 b+c
80 strh r8, [r1, r2] ; out[pitch] = b1+c1 1
81 sub r7, r7, r11 ; b1 - c1 1 b-c
87 strh r7, [r1, r8] ; out[pitch*2] = b1-c1 1
106 sub r0, r0, r3 ; b1 = [0] - [2] 1 b1
111 add r3, r0, r9 ; b1+c1 1 b+c
112 add r3, r3, #4 ; b1+c1+4 1 +
    [all...]
  /development/tools/axl/
singletonmixin.py 139 b1 = B.getInstance('arg1 value', 'arg2 value')
141 self.assertEquals(b1.arg1, 'arg1 value')
142 self.assertEquals(b1.arg2, 'arg2 value')
143 self.assertEquals(id(b1), id(b2))
192 b1 = B.getInstance('arg1 value', 'arg2 value')
  /external/openssl/crypto/asn1/
a_set.c 76 const MYBLOB *b1 = (const MYBLOB *)elem1; local
80 r = memcmp(b1->pbData, b2->pbData,
81 b1->cbData < b2->cbData ? b1->cbData : b2->cbData);
84 return b1->cbData-b2->cbData;
  /external/chromium/third_party/icu/source/i18n/
casetrn.cpp 65 // detect, and store in csc->b1, if we hit the limit
70 csc->b1=TRUE;
76 csc->b1=TRUE;
162 if(csc.b1 && isIncremental) {
  /external/icu4c/i18n/
casetrn.cpp 65 // detect, and store in csc->b1, if we hit the limit
70 csc->b1=TRUE;
76 csc->b1=TRUE;
162 if(csc.b1 && isIncremental) {
  /external/libffi/testsuite/libffi.call/
nested_struct10.c 48 struct B b1; local
52 b1 = *(struct B*)(args[1]);
55 *(B*)resp = B_fn(b0, b1, b2);
nested_struct4.c 42 struct B b1; local
45 b1 = *(struct B*)(args[1]);
47 *(B*)resp = B_fn(b0, b1);
nested_struct5.c 42 struct B b1; local
45 b1 = *(struct B*)(args[1]);
47 *(B*)resp = B_fn(b0, b1);
nested_struct6.c 47 struct B b1; local
51 b1 = *(struct B*)(args[1]);
54 *(B*)resp = B_fn(b0, b1, b2);
nested_struct7.c 42 struct B b1; local
45 b1 = *(struct B*)(args[1]);
47 *(B*)resp = B_fn(b0, b1);
nested_struct8.c 47 struct B b1; local
51 b1 = *(struct B*)(args[1]);
54 *(B*)resp = B_fn(b0, b1, b2);

Completed in 291 milliseconds

1 2 34 5 6 7 8 91011>>