Searched defs:B2 (Results 1 - 25 of 93) sorted by last modified time

1234

/external/webp/src/dsp/
H A Dcommon_sse2.h173 const __m128i B2 = _mm_unpacklo_epi8(A2, A3); local
179 const __m128i C2 = _mm_unpacklo_epi8(B2, B3);
180 const __m128i C3 = _mm_unpackhi_epi8(B2, B3);
H A Ddec_msa.c711 v16u8 A, B, C, AC, B2, R; local
717 B2 = __msa_ave_u_b(B, B);
718 R = __msa_aver_u_b(AC, B2);
728 v16u8 A, B, C, AC, B2, R, A1; local
739 B2 = __msa_ave_u_b(B, B);
740 R = __msa_aver_u_b(AC, B2);
756 v16u8 A, B, C, AC, B2, R; local
763 B2 = __msa_ave_u_b(B, B);
764 R = __msa_aver_u_b(AC, B2);
H A Denc_msa.c267 const v16u8 B2 = __msa_ave_u_b(B, B); local
268 const v16u8 R = __msa_aver_u_b(AC, B2);
301 const v16u8 B2 = __msa_ave_u_b(B, B); local
302 const v16u8 R0 = __msa_aver_u_b(AC, B2);
320 const v16u8 B2 = __msa_ave_u_b(B, B); local
321 const v16u8 R0 = __msa_aver_u_b(AC, B2);
H A Drescaler_sse2.c205 const __m128i B2 = _mm_mul_epu32(*A2, *mult); local
209 const __m128i C2 = _mm_add_epi64(B2, rounder);
259 __m128i A0, A1, A2, A3, B0, B1, B2, B3; local
261 LoadDispatchAndMult(irow + x_out, &mB, &B0, &B1, &B2, &B3);
265 const __m128i C2 = _mm_add_epi64(A2, B2);
305 __m128i A0, A1, A2, A3, B0, B1, B2, B3; local
307 LoadDispatchAndMult(frow + x_out, &mult_y, &B0, &B1, &B2, &B3);
311 const __m128i C2 = _mm_add_epi64(B2, rounder);
H A Dyuv_sse2.c60 const __m128i B2 = _mm_subs_epu16(B1, k17685); local
62 // use logical shift for B2, which can be larger than 32767
65 *B = _mm_srli_epi16(B2, 6); // range: [0, 34238]
245 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
250 YUV444ToRGB(y + 16, u + 16, v + 16, &R2, &G2, &B2);
259 rgb5 = _mm_packus_epi16(B2, B3);
267 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
272 YUV444ToRGB(y + 16, u + 16, v + 16, &R2, &G2, &B2);
277 bgr1 = _mm_packus_epi16(B2, B3);
357 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B local
393 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; local
697 const __m128i B2 = _mm_unpacklo_epi16(A2, A3); // r4 r5 r6 r7 | g4 g5 .. local
[all...]
/external/v8/src/base/
H A Dieee754.cc2372 B2 = 696219795; /* B2 = (1023-1023/3-54/3-0.03306235651)*2**20 */ local
2415 INSERT_WORDS(t, sign | ((high & 0x7fffffff) / 3 + B2), 0);
/external/v8/src/ppc/
H A Dconstants-ppc.h2583 B2 = 1 << 2, enumerator in enum:v8::internal::__anon23419
/external/swiftshader/third_party/subzero/src/
H A DIceAssemblerARM32.cpp38 static constexpr IValueT B2 = 1 << 2; member in namespace:__anon20643
1312 constexpr IValueT AdcOpcode = B2 | B0; // 0101
1336 constexpr IValueT Add = B2; // 0100
1390 constexpr IValueT BicOpcode = B3 | B2 | B1; // i.e. 1110
1612 MemExOpcode |= B2;
1615 MemExOpcode |= B2 | B1;
1671 constexpr IValueT ShiftOpcode = B3 | B2 | B0; // 1101
1748 constexpr IValueT MovOpcode = B3 | B2 | B0; // 1101.
1815 constexpr IValueT MvnOpcode = B3 | B2 | B1 | B0; // i.e. 1111
1848 constexpr IValueT SbcOpcode = B2 | B
[all...]
/external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
H A DDebugSupport.h357 UINT64 B2; member in struct:__anon22175
/external/swiftshader/src/Renderer/
H A DETC_Decoder.cpp174 unsigned char B2 : 4; member in struct:__anon19539::ETC2::__anon19540::__anon19541::__anon19542::__anon19543::__anon19544::__anon19545::__anon19546
343 int b2 = extend_4to8bits(B2);
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DCasting.cpp73 extern const bar *B2;
76 const bar *const B4 = B2;
80 EXPECT_TRUE(isa<foo>(B2));
88 const foo *F3 = cast<foo>(B2);
90 const foo *F4 = cast<foo>(B2);
103 const foo *F11 = cast_or_null<foo>(B2);
105 const foo *F12 = cast_or_null<foo>(B2);
116 const foo *F1 = dyn_cast<foo>(B2);
118 const foo *F2 = dyn_cast<foo>(B2);
129 const foo *F1 = dyn_cast_or_null<foo>(B2);
151 const bar *B2 = &B; member in namespace:__anon20379
[all...]
/external/svox/pico/lib/
H A Dpicopam.c279 #define B2 10 macro
1694 case B2:
1738 outVect[T_B2] = inVect[B2];
3143 case B2:
3257 if (pam->sSyllFeats[pam->nCurrSyllable].phoneV[B2] == 1)
3340 if (pam->sSyllFeats[pam->nCurrSyllable].phoneV[B2] == 0)
3355 if (pam->sSyllFeats[pam->nCurrSyllable].phoneV[B2] == 1)
3369 if (pam->sSyllFeats[pam->nCurrSyllable].phoneV[B2] == 1)
4359 pam->sSyllFeats[pam->nCurrSyllable].phoneV[B2] = 1;
/external/sqlite/dist/orig/
H A Dshell.c756 u64 B0, B1, B2, B3, B4; local
814 B2 = ROL64((A22^D2), 43);
817 A00 = B0 ^((~B1)& B2 );
819 A11 = B1 ^((~B2)& B3 );
820 A22 = B2 ^((~B3)& B4 );
824 B2 = ROL64((A20^D0), 3);
829 A20 = B0 ^((~B1)& B2 );
830 A31 = B1 ^((~B2)& B3 );
831 A42 = B2 ^((~B3)& B4 );
838 B2
[all...]
/external/sqlite/dist/
H A Dshell.c762 u64 B0, B1, B2, B3, B4; local
820 B2 = ROL64((A22^D2), 43);
823 A00 = B0 ^((~B1)& B2 );
825 A11 = B1 ^((~B2)& B3 );
826 A22 = B2 ^((~B3)& B4 );
830 B2 = ROL64((A20^D0), 3);
835 A20 = B0 ^((~B1)& B2 );
836 A31 = B1 ^((~B2)& B3 );
837 A42 = B2 ^((~B3)& B4 );
844 B2
[all...]
/external/skia/src/core/
H A DSkDistanceFieldGen.cpp272 static void B2(DFData* curr, int width) { function
418 B2(currData, dataWidth);
/external/robolectric/v3/libs/
H A Dsqlite4java-0.282.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/almworks/ com/almworks/sqlite4java/ javolution/ javolution/util/ javolution/ ...
/external/python/cpython2/Lib/lib2to3/tests/data/
H A Dpy2_test_grammar.py787 class B2(): pass class in function:GrammarTests.testClassdef
H A Dpy3_test_grammar.py731 class B2(): pass class in function:GrammarTests.testClassdef
/external/python/cpython2/Lib/test/
H A Dtest_grammar.py819 class B2(): pass class in function:GrammarTests.testClassdef
/external/pdfium/third_party/freetype/src/truetype/
H A Dttinterp.c5641 FT_Int B1, B2; local
5715 B2 = exc->zp2.cur[point].y;
5720 ( B2 & 63 ) != 0 &&
5721 B1 != B2 )
5748 B2 = exc->zp2.cur[point].y;
5752 ( B2 & 63 ) != 0 &&
5753 B1 != B2 )
6174 FT_Int B2 = 0; local
6347 B2 = exc->zp1.cur[point].y;
6355 ( B2
7017 FT_UShort B1, B2; local
[all...]
/external/opencv/cv/src/
H A Dcvrotcalipers.cpp315 float B2 = buf[1]; local
318 float C2 = A2 * points[((int *) buf)[5]].x + points[((int *) buf)[5]].y * B2;
320 float idet = 1.f / (A1 * B2 - A2 * B1);
322 float px = (C1 * B2 - C2 * B1) * idet;
332 out[5] = B2 * buf[4];
/external/opencv/cvaux/src/
H A Dcvtrifocal.cpp1699 double A2,B2,C2; local
1701 B2 = matrV_dat[7];
1728 matrK_dat[4*6+5] = -B2;
/external/mesa3d/src/compiler/glsl/
H A Dbuiltin_functions.cpp681 #define B2(X) ir_function_signature *_##X(const glsl_type *, const glsl_type *); macro
827 B2(ldexp)
828 B2(frexp)
829 B2(dfrexp)
898 #undef B2 macro
/external/llvm/unittests/Analysis/
H A DLazyCallGraphTest.cpp140 LazyCallGraph::Node &B2 = (I++)->getNode(CG); local
141 EXPECT_EQ("b2", B2.getFunction().getName());
182 EXPECT_EQ(B2.end(), std::next(B2.begin()));
183 EXPECT_EQ("b3", B2.begin()->getFunction().getName());
608 LazyCallGraph::Node &B2 = *CG.lookup(lookupFunction(*M, "b2")); local
622 ASSERT_EQ(&BRC, CG.lookupRefSCC(B2));
659 EXPECT_EQ(&BRC, CG.lookupRefSCC(B2));
1121 LazyCallGraph::Node &B2 = *CG.lookup(lookupFunction(*M, "b2")); local
1129 LazyCallGraph::SCC &B2C = *CG.lookupSCC(B2);
[all...]
/external/llvm/unittests/Support/
H A DCasting.cpp98 extern const bar *B2;
101 const bar *const B4 = B2;
105 EXPECT_TRUE(isa<foo>(B2));
113 const foo *F3 = cast<foo>(B2);
115 const foo *F4 = cast<foo>(B2);
129 const foo *F11 = cast_or_null<foo>(B2);
131 const foo *F12 = cast_or_null<foo>(B2);
142 const foo *F1 = dyn_cast<foo>(B2);
144 const foo *F2 = dyn_cast<foo>(B2);
156 const foo *F1 = dyn_cast_or_null<foo>(B2);
175 const bar *B2 = &B; member in namespace:__anon13805
[all...]

Completed in 966 milliseconds

1234