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

1 23 4 5 6 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
PorterDuffXfermodeTest.java 46 Bitmap b1 = Bitmap.createBitmap(WIDTH / 2, HEIGHT, Config.ARGB_8888); local
47 b1.eraseColor(Color.RED);
53 canvas.drawBitmap(b1, 0, 0, p);
62 canvas.drawBitmap(b1, 0, 0, p);
71 canvas.drawBitmap(b1, 0, 0, p);
PorterDuffColorFilterTest.java 43 Bitmap b1 = Bitmap.createBitmap(width / 2, height, Config.ARGB_8888); local
44 b1.eraseColor(Color.RED);
55 canvas.drawBitmap(b1, 0, 0, p);
68 canvas.drawBitmap(b1, 0, 0, p);
78 canvas.drawBitmap(b1, 0, 0, p);
PixelXorXfermodeTest.java 41 Bitmap b1 = Bitmap.createBitmap(width / 2, height, Config.ARGB_8888); local
42 b1.eraseColor(Color.WHITE);
50 canvas.drawBitmap(b1, 0, 0, p);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BERInputStream.java 46 int b, b1; local
48 b1 = read();
52 if (b1 == 0 && b == 0)
57 bOut.write(b1);
58 b1 = b;
  /external/libvpx/vp8/common/x86/
iwalsh_sse2.asm 38 paddw xmm0, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
43 punpckhqdq xmm4, xmm3 ;c1 b1
46 movdqa xmm1, xmm4 ;c1 b1
47 paddw xmm4, xmm0 ;dl+cl a1+b1 aka op[4] op[0]
48 psubw xmm0, xmm1 ;d1-c1 a1-b1 aka op[12] op[8]
71 paddw xmm4, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
76 punpckhqdq xmm5, xmm3 ;c1 b1
78 movdqa xmm1, xmm5 ;c1 b1
79 paddw xmm5, xmm4 ;dl+cl a1+b1 aka op[4] op[0]
80 psubw xmm4, xmm1 ;d1-c1 a1-b1 aka op[12] op[8
    [all...]
  /external/srec/srec/clib/
voicing.c 64 chan->b1 = SHIFT_UP(enval, 8);
86 chan->b1 += SHIFT_DOWN(B1_RATE * (SHIFT_UP(enval, 8) - chan->b1), 8);
96 threshold = (chan->b1 + (SHIFT_DOWN(
138 chan->b0 / 256.0, chan->b1 / 256.0,
  /external/iproute2/tc/
f_route.c 139 SPRINT_BUF(b1);
152 SPRINT_BUF(b1);
153 fprintf(f, "flowid %s ", sprint_tc_classid(*(__u32*)RTA_DATA(tb[TCA_ROUTE4_CLASSID]), b1));
156 fprintf(f, "to %s ", rtnl_rtrealm_n2a(*(__u32*)RTA_DATA(tb[TCA_ROUTE4_TO]), b1, sizeof(b1)));
158 fprintf(f, "from %s ", rtnl_rtrealm_n2a(*(__u32*)RTA_DATA(tb[TCA_ROUTE4_FROM]), b1, sizeof(b1)));
q_netem.c 313 SPRINT_BUF(b1);
349 fprintf(f, " delay %s", sprint_ticks(qopt.latency, b1));
352 fprintf(f, " %s", sprint_ticks(qopt.jitter, b1));
354 fprintf(f, " %s", sprint_percent(cor->delay_corr, b1));
359 fprintf(f, " loss %s", sprint_percent(qopt.loss, b1));
361 fprintf(f, " %s", sprint_percent(cor->loss_corr, b1));
366 sprint_percent(qopt.duplicate, b1));
368 fprintf(f, " %s", sprint_percent(cor->dup_corr, b1));
373 sprint_percent(reorder->probability, b1));
376 sprint_percent(reorder->correlation, b1));
    [all...]
q_tbf.c 224 SPRINT_BUF(b1);
238 fprintf(f, "rate %s ", sprint_rate(qopt->rate.rate, b1));
241 fprintf(f, "burst %s/%u mpu %s ", sprint_size(buffer, b1),
244 fprintf(f, "burst %s ", sprint_size(buffer, b1));
249 fprintf(f, "peakrate %s ", sprint_rate(qopt->peakrate.rate, b1));
253 fprintf(f, "mtu %s/%u mpu %s ", sprint_size(mtu, b1),
256 fprintf(f, "minburst %s ", sprint_size(mtu, b1));
264 fprintf(f, "limit %s ", sprint_size(qopt->limit, b1));
272 fprintf(f, "lat %s ", sprint_time(latency, b1));
q_fifo.c 74 SPRINT_BUF(b1);
75 fprintf(f, "limit %s", sprint_size(qopt->limit, b1));
m_police.c 324 SPRINT_BUF(b1);
347 fprintf(f, "rate %s ", sprint_rate(p->rate.rate, b1));
349 fprintf(f, "burst %s ", sprint_size(buffer, b1));
350 fprintf(f, "mtu %s ", sprint_size(p->mtu, b1));
354 fprintf(f, "peakrate %s ", sprint_rate(p->peakrate.rate, b1));
356 fprintf(f, "avrate %s ", sprint_rate(*(__u32*)RTA_DATA(tb[TCA_POLICE_AVRATE]), b1));
357 fprintf(f, "action %s", police_action_n2a(p->action, b1, sizeof(b1)));
359 fprintf(f, "/%s ", police_action_n2a(*(int*)RTA_DATA(tb[TCA_POLICE_RESULT]), b1, sizeof(b1)));
    [all...]
  /external/dropbear/libtommath/
bn_mp_toom_mul.c 27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
32 &a0, &a1, &a2, &b0, &b1,
56 /* b = b2 * B**2 + b1 * B + b0 */
61 if ((res = mp_copy(b, &b1)) != MP_OKAY) {
64 mp_rshd(&b1, B);
65 mp_mod_2d(&b1, DIGIT_BIT * B, &b1);
82 /* w1 = (a2 + 2(a1 + 2a0))(b2 + 2(b1 + 2b0)) */
99 if ((res = mp_add(&tmp2, &b1, &tmp2)) != MP_OKAY) {
113 /* w3 = (a0 + 2(a1 + 2a2))(b0 + 2(b1 + 2b2)) *
    [all...]
  /external/webkit/JavaScriptCore/wtf/
StringHashFunctions.h 123 unsigned char b1 = data[1]; local
124 if (!b1) {
131 unsigned tmp = (b1 << 11) ^ hash;
  /external/chromium/third_party/icu/source/test/cintltst/
nfsprep.c 51 UChar *b1 = b1Stack, *b2 = b2Stack; local
73 u_strFromUTF8(b1,b1Capacity,&b1Len,src,srcLength,status);
79 b1 = (UChar*) malloc(b1Len * U_SIZEOF_UCHAR);
80 if(b1==NULL){
86 u_strFromUTF8(b1, b1Capacity, &b1Len, src, srcLength, status);
92 b2Len = usprep_prepare(profile, b1, b1Len, b2, b2Capacity, USPREP_DEFAULT, parseError, status);
100 b2Len = usprep_prepare(profile, b1, b1Len, b2, b2Len, USPREP_DEFAULT, parseError, status);
122 if(b1!=b1Stack){
123 free(b1);
  /external/icu4c/test/cintltst/
nfsprep.c 51 UChar *b1 = b1Stack, *b2 = b2Stack; local
73 u_strFromUTF8(b1,b1Capacity,&b1Len,src,srcLength,status);
79 b1 = (UChar*) malloc(b1Len * U_SIZEOF_UCHAR);
80 if(b1==NULL){
86 u_strFromUTF8(b1, b1Capacity, &b1Len, src, srcLength, status);
92 b2Len = usprep_prepare(profile, b1, b1Len, b2, b2Capacity, USPREP_DEFAULT, parseError, status);
100 b2Len = usprep_prepare(profile, b1, b1Len, b2, b2Len, USPREP_DEFAULT, parseError, status);
122 if(b1!=b1Stack){
123 free(b1);
  /system/core/libacc/tests/
test.py 120 # b1 and b2 are the actual stdout and stderr.
126 def compareOuput(a1,a2,b1,b2):
128 totalLen = len(a1) + len(a2) + len(b1) + len(b2)
129 a1, b1 = matchCommon(a1, b1)
131 a2, b1 = matchCommon(a2, b1)
133 newTotalLen = len(a1) + len(a2) + len(b1) + len(b2)
137 print "Failed at %d %d %d %d" % (len(a1), len(a2), len(b1), len(b2))
140 print "b1", b
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
nptrans.cpp 201 UChar *b1 = b1Stack; local
208 b1Len = map(src,srcLength, b1, b1Capacity,allowUnassigned,parseError, status);
213 if(!u_growBufferFromStatic(b1Stack,&b1,&b1Capacity,b1Len,0)){
220 b1Len = map(src,srcLength, b1, b1Len,allowUnassigned, parseError, status);
233 U16_NEXT(b1, b1Index, b1Len, ch);
268 uprv_memmove(dest,b1, b1Len*U_SIZEOF_UCHAR);
272 if(b1!=b1Stack){
273 uprv_free(b1);
  /frameworks/base/services/sensorservice/
SecondOrderLowPassFilter.cpp 41 b1 = 2.0f*(K*K - 1)*iD;
61 float y = (x + x2)*s.a0 + x1*s.a1 - y1*s.b1 - y2*s.b2;
  /cts/tests/tests/app/src/android/app/cts/
TimePickerDialogTest.java 169 Bundle b1 = new Bundle(); local
170 b1.putInt(HOUR, TARGET_HOUR);
171 b1.putInt(MINUTE, minute);
172 b1.putBoolean(IS_24_HOUR, false);
174 mTimePickerDialog.onRestoreInstanceState(b1);
  /external/libvpx/vp8/common/ppc/
idctllm_altivec.asm 43 vsubsws v7, v2, v3 ;# b1 = ip[0]-ip[8]
70 vaddsws v1, v7, v4 ;# b1 + c1
71 vsubsws v2, v7, v4 ;# b1 - c1
74 vmrghw v4, v0, v1 ;# a0 b0 a1 b1
81 vperm v1, v4, v5, v11 ;# a1 b1 c1 d1
88 vsubsws v7, v0, v2 ;# b1 = ip[0]-ip[8]
113 vaddsws v1, v7, v4 ;# b1 + c1
114 vsubsws v2, v7, v4 ;# b1 - c1
130 vmrglh v3, v0, v1 ;# b0 d0 b1 d1 b2 d2 b3 d3
132 vmrghh v0, v2, v3 ;# a0 b0 c0 d0 a1 b1 c1 d
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
TwofishEngine.java 392 int b0, b1, b2, b3; local
396 b0 = b1 = b2 = b3 = i;
401 gSBox[i*2+1] = gMDS1[(P[P_11][b1] & 0xff) ^ b1(k0)];
407 b1 = (P[P_14][b1] & 0xff) ^ b1(k3);
412 b1 = (P[P_13][b1] & 0xff) ^ b1(k2)
523 int b1 = b1(x); local
631 private int b1(int x) method in class:TwofishEngine
    [all...]
  /external/iproute2/ip/
iprule.c 55 SPRINT_BUF(b1);
126 SPRINT_BUF(b1);
127 fprintf(fp, "tos %s ", rtnl_dsfield_n2a(r->rtm_tos, b1, sizeof(b1)));
151 fprintf(fp, "lookup %s ", rtnl_rttable_n2a(table, b1, sizeof(b1)));
159 rtnl_rtrealm_n2a(from, b1, sizeof(b1)));
162 rtnl_rtrealm_n2a(to, b1, sizeof(b1)));
    [all...]
  /external/jpeg/
jquant2.c 430 register boxptr b1,b2; local
437 b1 = find_biggest_color_pop(boxlist, numboxes);
439 b1 = find_biggest_volume(boxlist, numboxes);
441 if (b1 == NULL) /* no splittable boxes left! */
445 b2->c0max = b1->c0max; b2->c1max = b1->c1max; b2->c2max = b1->c2max;
446 b2->c0min = b1->c0min; b2->c1min = b1->c1min; b2->c2min = b1->c2min
    [all...]
  /external/srec/srec/include/
voicing.h 63 int b1; /* background estimate, level 1 */ member in struct:__anon7656
  /frameworks/base/core/java/android/net/
SntpClient.java 164 byte b1 = buffer[offset+1];
170 int i1 = ((b1 & 0x80) == 0x80 ? (b1 & 0x7F) + 0x80 : b1);

Completed in 552 milliseconds

1 23 4 5 6 7 8 91011>>