Searched defs:b0 (Results 101 - 125 of 146) sorted by relevance

123456

/external/opencv/cv/src/
H A Dcvimgwarp.cpp1848 __m128i v0, v1, v2, v3, a0, a1, b0, b1; local
1864 b0 = _mm_unpacklo_epi64(a0, a1);
1866 v0 = _mm_madd_epi16(v0, b0);
1883 b0 = _mm_unpacklo_epi64(a0, a1);
1885 v2 = _mm_madd_epi16(v2, b0);
/external/opencv/ml/src/
H A Dmlann_mlp.cpp626 double a0 = no_scale ? 1 : DBL_MAX, b0 = no_scale ? 0 : -DBL_MAX; local
631 scale[j*2+1] = inv_scale[2*j+1] = b0;
/external/skia/src/effects/gradients/
H A DSkGradientShader.cpp453 uint32_t b0 = SkColorGetB(c0); local
462 b0 = SkMulDiv255Round(b0, a0);
472 SkFixed db = SkIntToFixed(b1 - b0) / (count - 1);
488 SkUFixed b = SkIntToFixed(b0) + bias0;
/external/skia/src/gpu/ops/
H A DGrAAHairLinePathRenderer.cpp44 // If a,b,c are the original control points then the poly a0,b0,c0,c1,a1
46 // b0
52 // Each is drawn as three triangles ((a0,a1,b0), (b0,c1,c0), (a1,c1,b0))
463 // | b0
469 // edges a0->b0 and b0->c0 are parallel to original edges a->b and b->c,
473 BezierVertex& b0 = verts[2]; local
511 intersect_lines(a0.fPos, abN, c0.fPos, cbN, &b0
[all...]
/external/swiftshader/src/Shader/
H A DSamplerCore.cpp1951 const UShort4 b0 = UShort4(iround(-B0 * 0x4000)); local
1956 UShort4 b = SubSat(y + MulHigh(U, bU), b0);
/external/webp/src/dsp/
H A Denc.c204 const int b0 = a0 + a1; // 16b local
208 out[ 0 + i] = b0 >> 1; // 15b
598 const int b0 = a0 + a1; local
603 sum += w[ 0] * abs(b0);
H A Denc_msa.c804 v4i32 s0, s1, s2, s3, b0, b1, b2, b3, t0, t1, t2, t3; local
822 LD_SW4(&mtx->bias_[0], 4, b0, b1, b2, b3); // bias
824 ADD4(b0, t0, b1, t1, b2, t2, b3, t3, b0, b1, b2, b3);
825 SRAI_W4_SW(b0, b1, b2, b3, 17);
826 PCKEV_H2_SH(b1, b0, b3, b2, tmp2, tmp3);
H A Denc_neon.c86 // a0 a1 a2 a3 | b0 b1 b2 b3 => a0 b0 c0 d0 | a1 b1 c1 d1
89 // b0 d0 b1 d1 b2 d2 ...
528 const int32x4_t b0 = vhaddq_s32(a0, a1); // (a0 + a1) >> 1 local
532 const int16x4_t out0 = vmovn_s32(b0);
628 // sum += w[ 0] * abs(b0);
723 const int16x8_t b0 = vld1q_s16(out + 8); local
725 const uint16x8_t b1 = vreinterpretq_u16_s16(vabsq_s16(b0));
747 const uint8x16_t b0 = vld1q_u8(b); local
748 const uint8x16_t abs_diff = vabdq_u8(a0, b0);
789 const uint8x8_t b0 = vld1_u8(b + y * BPS); local
799 const uint8x16_t b0 = Load4x4(b); local
[all...]
H A Dlossless_enc_sse2.c191 const __m128i b0 = _mm_loadu_si128((const __m128i*)&b[i + 0]); local
197 _mm_storeu_si128((__m128i*)&out[i + 0], _mm_add_epi32(a0, b0));
216 const __m128i b0 = _mm_loadu_si128((const __m128i*)&out[i + 0]); local
222 _mm_storeu_si128((__m128i*)&out[i + 0], _mm_add_epi32(a0, b0));
H A Dlossless_sse2.c504 const __m128i v2l = _mm_unpacklo_epi8(v1l, v1h); // b0...b7 | g0...g7
507 const __m128i rb0 = _mm_unpacklo_epi64(v2h, v2l); // r0...r7 | b0...b7
535 const __m128i v2l = _mm_unpacklo_epi8(v1l, v1h); // b0...b7 | g0...g7
538 const __m128i rb0 = _mm_unpacklo_epi64(v2h, v2l); // r0...r7 | b0...b7
572 const __m128i v2l = _mm_unpacklo_epi8(v1l, v1h); // b0...b7 | g0...g7
575 const __m128i rb0 = _mm_unpacklo_epi64(v2h, v2l); // r0...r7 | b0...b7
576 const __m128i rb1 = _mm_and_si128(rb0, mask_0xf8); // -r0..-r7|-b0..-b7
581 const __m128i b0 = _mm_srli_si128(rb1, 8); // -b0...-b7|0 local
583 const __m128i b1 = _mm_srli_epi16(b0,
[all...]
H A Dyuv_sse2.c145 const __m128i b0 = _mm_packus_epi16(*B, *B); local
147 const __m128i b1 = _mm_and_si128(_mm_srli_epi16(b0, 3), _mm_set1_epi8(0x1f));
686 const __m128i in0 = LOAD_16(rgbx + 0); // r0 | g0 | b0 |x| r1 | g1 | b1 |x
696 const __m128i B1 = _mm_unpackhi_epi16(A0, A1); // b0 b1 b2 b3 | x x x x
806 const __m128i b0 = _mm_loadu_si128((const __m128i*)(B + i + 0)); local
809 const __m128i a1b0 = _mm_add_epi16(a1, b0);
H A Denc_sse2.c962 const __m128i b0 = _mm_loadu_si128((const __m128i*)&b[BPS * 0]); local
966 SubtractAndAccumulate(a0, b0, &sum1);
995 const __m128i b0 = LOAD_8x16b(&b[BPS * 0]); local
998 const __m128i c0 = _mm_subs_epi16(a0, b0);
1023 const __m128i b0 = _mm_loadl_epi64((const __m128i*)&b[BPS * 0]); local
1030 const __m128i b01 = _mm_unpacklo_epi32(b0, b1);
1057 const __m128i b0 = _mm_srli_epi16(a0, 8); // hi byte local
1065 const __m128i d0 = _mm_add_epi32(b0, c0);
1129 const __m128i b0 = _mm_add_epi16(a0, a1); local
1139 VP8Transpose_2_4x4_16b(&b0,
1153 const __m128i b0 = _mm_add_epi16(a0, a1); local
1382 __m128i b0 = _mm_loadu_si128((const __m128i*)&src2[i]); local
[all...]
/external/deqp/framework/common/
H A DtcuTexLookupVerifier.cpp421 const float b0 = de::min(y0, yBounds0.y()); local
422 const Vec4 c0 = quad0.p00*(1.0f-a0)*(1.0f-b0) + quad0.p10*a0*(1.0f-b0) + quad0.p01*(1.0f-a0)*b0 + quad0.p11*a0*b0;
484 const float b0 = de::min(y0, yBounds0.y()); local
485 const Vec4 c00 = quad00.p00*(1.0f-a0)*(1.0f-b0) + quad00.p10*a0*(1.0f-b0) + quad00.p01*(1.0f-a0)*b0 + quad00.p11*a0*b0;
[all...]
/external/libpcap/
H A Dgencode.c584 * Merge the lists in b0 and b1, using the 'sense' field to indicate
588 merge(b0, b1)
589 struct block *b0, *b1;
591 register struct block **p = &b0;
643 gen_and(b0, b1)
644 struct block *b0, *b1;
646 backpatch(b0, b1->head);
647 b0->sense = !b0->sense;
649 merge(b1, b0);
1746 struct block *b0, *b1; local
1951 struct block *b0, *b1; local
2799 struct block *b0; local
2838 struct block *b0, *b1, *b2; local
3387 struct block *b0, *b1; local
3458 struct block *b0, *b1; local
3482 struct block *b0, *b1; local
3501 struct block *b0, *b1; local
3520 struct block *b0, *b1; local
3538 struct block *b0, *b1; local
3648 struct block *b0, *b1; local
3691 struct block *b0, *b1; local
3742 register struct block *b0, *b1; local
3800 struct block *b0, *b1; local
3858 register struct block *b0, *b1; local
3917 register struct block *b0, *b1, *b2; local
4343 register struct block *b0, *b1; local
4416 struct block *b0, *b1, *b2, *tmp; local
4491 struct block *b0, *b1; local
4524 struct block *b0, *b1; local
4779 struct block *b0, *b1, *tmp; local
4847 struct block *b0; local
5129 struct block *b0, *b1, *tmp; local
5172 struct block *b0, *b1, *tmp; local
5219 struct block *b0, *b1, *tmp; local
5261 struct block *b0, *b1, *tmp; local
5321 struct block *b0, *b1, *tmp; local
5364 struct block *b0, *b1, *tmp; local
5423 struct block *b0, *b1, *tmp; local
5465 struct block *b0, *b1, *tmp; local
5845 struct block *b0, *b1; local
5882 struct block *b0, *b1; local
7190 struct block *b0, *b1, *b2; local
7256 register struct block *b0; local
7271 register struct block *b0, *b1, *b2; local
7459 register struct block *b0; local
7584 struct block *b0; local
7606 struct block *b0; local
7628 struct block *b0; local
7644 struct block *b0; local
7660 struct block *b0; local
7676 struct block *b0; local
7741 struct block *b0; local
7764 struct block *b0; local
7817 register struct block *b0, *b1; local
7872 struct block *b0, *b1; local
7903 struct block *b0, *b1; local
7941 struct block *b0; local
8026 struct block *b0, *b1; local
8105 struct block *b0, *b1; local
8178 struct block *b0, *b1; local
8208 struct block *b0, *b1; local
8234 struct block *b0, *b1; local
8412 struct block *b0, *b1; local
8442 struct block *b0; local
8473 struct block *b0; local
8528 struct block *b0, *b1; local
8634 struct block *b0, *b1; local
8705 struct block *b0; local
8841 struct block *b0, *b1; local
[all...]
/external/libvpx/libvpx/third_party/libyuv/source/
H A Drow_common.cc197 uint8 b0 = src_argb[0] >> 3; local
203 WRITEWORD(dst_rgb, b0 | (g0 << 5) | (r0 << 11) |
209 uint8 b0 = src_argb[0] >> 3; local
212 *(uint16*)(dst_rgb) = b0 | (g0 << 5) | (r0 << 11);
230 uint8 b0 = clamp255(src_argb[0] + dither0) >> 3; local
236 WRITEWORD(dst_rgb, b0 | (g0 << 5) | (r0 << 11) |
243 uint8 b0 = clamp255(src_argb[0] + dither0) >> 3; local
246 *(uint16*)(dst_rgb) = b0 | (g0 << 5) | (r0 << 11);
253 uint8 b0 = src_argb[0] >> 3; local
262 b0 | (g
268 uint8 b0 = src_argb[0] >> 3; local
280 uint8 b0 = src_argb[0] >> 4; local
295 uint8 b0 = src_argb[0] >> 4; local
486 uint8 b0 = src_rgb565[0] & 0x1f; local
511 uint8 b0 = src_rgb565[0] & 0x1f; local
533 uint8 b0 = src_argb1555[0] & 0x1f; local
559 uint8 b0 = src_argb1555[0] & 0x1f; local
581 uint8 b0 = src_argb4444[0] & 0x0f; local
607 uint8 b0 = src_argb4444[0] & 0x0f; local
1422 uint8 b0; local
1461 uint8 b0; local
1500 uint8 b0; local
1627 uint8 b0; local
[all...]
/external/libyuv/files/source/
H A Drow_common.cc199 uint8 b0 = src_argb[0] >> 3; local
205 WRITEWORD(dst_rgb, b0 | (g0 << 5) | (r0 << 11) | (b1 << 16) | (g1 << 21) |
211 uint8 b0 = src_argb[0] >> 3; local
214 *(uint16*)(dst_rgb) = b0 | (g0 << 5) | (r0 << 11);
234 uint8 b0 = clamp255(src_argb[0] + dither0) >> 3; local
240 WRITEWORD(dst_rgb, b0 | (g0 << 5) | (r0 << 11) | (b1 << 16) | (g1 << 21) |
247 uint8 b0 = clamp255(src_argb[0] + dither0) >> 3; local
250 *(uint16*)(dst_rgb) = b0 | (g0 << 5) | (r0 << 11);
257 uint8 b0 = src_argb[0] >> 3; local
265 *(uint32*)(dst_rgb) = b0 | (g
271 uint8 b0 = src_argb[0] >> 3; local
282 uint8 b0 = src_argb[0] >> 4; local
296 uint8 b0 = src_argb[0] >> 4; local
494 uint8 b0 = src_rgb565[0] & 0x1f; local
519 uint8 b0 = src_rgb565[0] & 0x1f; local
544 uint8 b0 = src_argb1555[0] & 0x1f; local
570 uint8 b0 = src_argb1555[0] & 0x1f; local
595 uint8 b0 = src_argb4444[0] & 0x0f; local
621 uint8 b0 = src_argb4444[0] & 0x0f; local
1418 uint8 b0; local
1456 uint8 b0; local
1494 uint8 b0; local
1579 uint8 b0; local
[all...]
/external/valgrind/VEX/priv/
H A Dhost_ppc_defs.c3156 UInt r3, UInt opc2, UInt b0, VexEndness endness_host )
3164 vassert(b0 < 0x2);
3166 (r3<<11) | (opc2<<1) | (b0));
3171 UInt r3, UInt b10, UInt opc2, UInt b0,
3181 vassert(b0 < 0x2);
3183 (r3<<11) | (b10 << 10) | (opc2<<1) | (b0));
3188 UInt f3, UInt opc2, UInt b0, VexEndness endness_host )
3196 vassert(b0 < 0x2);
3198 (f3<<11) | (opc2<<1) | (b0));
3240 UInt imm, UInt opc2, UInt b0,
3155 mkFormX( UChar* p, UInt opc1, UInt r1, UInt r2, UInt r3, UInt opc2, UInt b0, VexEndness endness_host ) argument
3170 mkFormXO( UChar* p, UInt opc1, UInt r1, UInt r2, UInt r3, UInt b10, UInt opc2, UInt b0, VexEndness endness_host ) argument
3187 mkFormXL( UChar* p, UInt opc1, UInt f1, UInt f2, UInt f3, UInt opc2, UInt b0, VexEndness endness_host ) argument
3239 mkFormXS( UChar* p, UInt opc1, UInt r1, UInt r2, UInt imm, UInt opc2, UInt b0, VexEndness endness_host ) argument
3303 mkFormA( UChar* p, UInt opc1, UInt r1, UInt r2, UInt r3, UInt r4, UInt opc2, UInt b0, VexEndness endness_host ) argument
3320 mkFormZ22( UChar* p, UInt opc1, UInt r1, UInt r2, UInt constant, UInt opc2, UInt b0, VexEndness endness_host) argument
3336 mkFormZ23( UChar* p, UInt opc1, UInt r1, UInt r2, UInt r3, UInt rmc, UInt opc2, UInt b0, VexEndness endness_host) argument
[all...]
/external/boringssl/src/crypto/curve25519/
H A Dcurve25519.c4147 int64_t b0 = 2097151 & load_3(b); local
4219 s0 = c0 + a0 * b0;
4220 s1 = c1 + a0 * b1 + a1 * b0;
4221 s2 = c2 + a0 * b2 + a1 * b1 + a2 * b0;
4222 s3 = c3 + a0 * b3 + a1 * b2 + a2 * b1 + a3 * b0;
4223 s4 = c4 + a0 * b4 + a1 * b3 + a2 * b2 + a3 * b1 + a4 * b0;
4224 s5 = c5 + a0 * b5 + a1 * b4 + a2 * b3 + a3 * b2 + a4 * b1 + a5 * b0;
4225 s6 = c6 + a0 * b6 + a1 * b5 + a2 * b4 + a3 * b3 + a4 * b2 + a5 * b1 + a6 * b0;
4227 a6 * b1 + a7 * b0;
4229 a6 * b2 + a7 * b1 + a8 * b0;
[all...]
/external/clang/lib/Headers/
H A Daltivec.h7682 unsigned char b0 = (__b & 0x07) * 2; local
7683 unsigned char b1 = b0 + 1;
7685 (vector unsigned char)(b0, b1, b0, b1, b0, b1, b0, b1, b0, b1,
7686 b0, b1, b0, b1, b0, b
7691 unsigned char b0 = (__b & 0x07) * 2; local
7700 unsigned char b0 = (__b & 0x07) * 2; local
7709 unsigned char b0 = (__b & 0x07) * 2; local
7718 unsigned char b0 = (__b & 0x03) * 4; local
7727 unsigned char b0 = (__b & 0x03) * 4; local
7736 unsigned char b0 = (__b & 0x03) * 4; local
7745 unsigned char b0 = (__b & 0x03) * 4; local
7755 unsigned char b0 = (__b & 0x01) * 8; local
7764 unsigned char b0 = (__b & 0x01) * 8; local
7773 unsigned char b0 = (__b & 0x01) * 8; local
7782 unsigned char b0 = (__b & 0x01) * 8; local
[all...]
/external/freetype/src/truetype/
H A Dttinterp.c6393 b0, b1; local
6410 b0 = (FT_UShort)args[3];
6413 if ( BOUNDS( b0, exc->zp0.n_points ) ||
6426 dbx = exc->zp0.cur[b1].x - exc->zp0.cur[b0].x;
6427 dby = exc->zp0.cur[b1].y - exc->zp0.cur[b0].y;
6432 dx = exc->zp0.cur[b0].x - exc->zp1.cur[a0].x;
6433 dy = exc->zp0.cur[b0].y - exc->zp1.cur[a0].y;
6466 exc->zp0.cur[b0].x +
6470 exc->zp0.cur[b0].y +
/external/icu/icu4c/source/i18n/
H A DdecNumber.c8141 uByte *b, *b0; /* work */ local
8146 b0=(uByte *)alloc; /* as bytes */
8150 for (b=b0+4; b<b0+8; b++) *b=DECFENCE;
8151 for (b=b0+n+8; b<b0+n+12; b++) *b=DECFENCE;
8152 return b0+8; /* -> play area */
8169 uByte *b, *b0; /* work */ local
8173 b0=(uByte *)alloc; /* as bytes */
8174 b0
[all...]
/external/lzma/C/
H A DLzmaEnc.c770 UInt32 b0 = a1 + GET_PRICE_0a(p->choice2); local
783 prices[i] = b0 + RcTree_GetPrice(p->mid + (posState << kLenNumMidBits), kLenNumMidBits, i - kLenNumLowSymbols, ProbPrices);
/external/pdfium/third_party/freetype/src/truetype/
H A Dttinterp.c6456 b0, b1; local
6473 b0 = (FT_UShort)args[3];
6476 if ( BOUNDS( b0, exc->zp0.n_points ) ||
6489 dbx = exc->zp0.cur[b1].x - exc->zp0.cur[b0].x;
6490 dby = exc->zp0.cur[b1].y - exc->zp0.cur[b0].y;
6495 dx = exc->zp0.cur[b0].x - exc->zp1.cur[a0].x;
6496 dy = exc->zp0.cur[b0].y - exc->zp1.cur[a0].y;
6527 exc->zp0.cur[b0].x +
6531 exc->zp0.cur[b0].y +
/external/webrtc/webrtc/examples/androidapp/third_party/autobanh/
H A Dautobanh.jarMETA-INF/MANIFEST.MF de/tavendo/autobahn/ByteBufferInputStream.class ByteBufferInputStream.java package de.tavendo ...
/external/valgrind/VEX/switchback/
H A Dtest_ppc_jm1.c270 unsigned char b0; local
276 b0 = s2[0];
279 res = ((int)a0) - ((int)b0);

Completed in 6680 milliseconds

123456