Home
last modified time | relevance | path

Searched refs:BV (Results 1 – 25 of 505) sorted by relevance

12345678910>>...21

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DGlobPattern.cpp28 BitVector BV(256, false); in expand() local
41 BV[Start] = true; in expand()
53 BV[(uint8_t)C] = true; in expand()
58 BV[(uint8_t)C] = true; in expand()
59 return BV; in expand()
88 Expected<BitVector> BV = expand(Chars.substr(1), Original); in scan() local
89 if (!BV) in scan()
90 return BV.takeError(); in scan()
91 return BV->flip(); in scan()
101 BitVector BV(256, false); in scan()
[all …]
/third_party/ffmpeg/libswscale/x86/
Dinput.asm36 %define BV 0xF6E4
74 ; bgr_Vcoeff_12x4: times 2 dw BV, GV, 0, BV
77 ; rgb_Vcoeff_3x56: times 2 dw BV, 0, GV, BV
87 ; rgba_Vcoeff_rb: times 4 dw RV, BV
88 ; rgba_Vcoeff_br: times 4 dw BV, RV
263 pmaddwd m2, m0, coeffV1 ; (dword) { B0*BV + G0*GV, B1*BV, B2*BV + G2*GV, B3*BV }
264 pmaddwd m3, m1, coeffV2 ; (dword) { R0*BV, G1*GV + R1*BV, R2*BV, G3*GV + R3*BV }
268 paddd m2, m3 ; (dword) { Bx*BV + Gx*GV + Rx*RV }[0-3]
285 pmaddwd m4, coeffV1 ; (dword) { B4*BV + G4*GV, B5*BV, B6*BV + G6*GV, B7*BV }
286 pmaddwd m5, coeffV2 ; (dword) { R4*BV, G5*GV + R5*BV, R6*BV, G7*GV + R7*BV }
[all …]
/third_party/ffmpeg/libavcodec/
Dcavsdsp.c345 #define CAVS_SUBPIX_HV(OPNAME, OP, NAME, AH, BH, CH, DH, EH, FH, AV, BV, CV, DV, EV, FV, FULL) \ argument
385 …OP(dst[0*dstStride], AV*tmpB + BV*tmpA + CV*tmp0 + DV*tmp1 + EV*tmp2 + FV*tmp3 + 64*src2[0*srcStri…
386 …OP(dst[1*dstStride], AV*tmpA + BV*tmp0 + CV*tmp1 + DV*tmp2 + EV*tmp3 + FV*tmp4 + 64*src2[1*srcStri…
387 …OP(dst[2*dstStride], AV*tmp0 + BV*tmp1 + CV*tmp2 + DV*tmp3 + EV*tmp4 + FV*tmp5 + 64*src2[2*srcStri…
388 …OP(dst[3*dstStride], AV*tmp1 + BV*tmp2 + CV*tmp3 + DV*tmp4 + EV*tmp5 + FV*tmp6 + 64*src2[3*srcStri…
389 …OP(dst[4*dstStride], AV*tmp2 + BV*tmp3 + CV*tmp4 + DV*tmp5 + EV*tmp6 + FV*tmp7 + 64*src2[4*srcStri…
390 …OP(dst[5*dstStride], AV*tmp3 + BV*tmp4 + CV*tmp5 + DV*tmp6 + EV*tmp7 + FV*tmp8 + 64*src2[5*srcStri…
391 …OP(dst[6*dstStride], AV*tmp4 + BV*tmp5 + CV*tmp6 + DV*tmp7 + EV*tmp8 + FV*tmp9 + 64*src2[6*srcStri…
392 …OP(dst[7*dstStride], AV*tmp5 + BV*tmp6 + CV*tmp7 + DV*tmp8 + EV*tmp9 + FV*tmp10 + 64*src2[7*srcStr…
414 OP(dst[0*dstStride], AV*tmpB + BV*tmpA + CV*tmp0 + DV*tmp1 + EV*tmp2 + FV*tmp3); \
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineFrameInfo.cpp116 BitVector BV(TRI->getNumRegs()); in getPristineRegs() local
121 return BV; in getPristineRegs()
126 BV.set(*CSR); in getPristineRegs()
131 BV.reset(*S); in getPristineRegs()
133 return BV; in getPristineRegs()
DAggressiveAntiDepBreaker.cpp526 BitVector BV(TRI->getNumRegs(), false); in GetRenameRegisters() local
538 BV |= RCBV; in GetRenameRegisters()
541 BV &= RCBV; in GetRenameRegisters()
547 return BV; in GetRenameRegisters()
584 BitVector &BV = RenameRegisterMap[Reg]; in FindSuitableFreeRegisters() local
585 assert(BV.empty()); in FindSuitableFreeRegisters()
586 BV = GetRenameRegisters(Reg); in FindSuitableFreeRegisters()
590 for (unsigned r : BV.set_bits()) in FindSuitableFreeRegisters()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallBitVector.h105 void switchToLarge(BitVector *BV) { in switchToLarge() argument
106 X = reinterpret_cast<uintptr_t>(BV); in switchToLarge()
337 BitVector *BV = new BitVector(N, t);
340 (*BV)[i] = (OldBits >> i) & 1;
341 switchToLarge(BV);
350 BitVector *BV = new BitVector(SmallSize); in reserve() local
353 BV->set(i); in reserve()
354 BV->reserve(N); in reserve()
355 switchToLarge(BV); in reserve()
/third_party/libphonenumber/resources/carrier/en/
D32.txt28 324630|TISMI BV
63 324802|TISMI BV
65 324807|MessageBird BV
/third_party/boost/libs/numeric/ublas/doc/samples/
Dassignment_examples.cpp125 matrix<double> BV(9,3); in main() local
126 BV <<= A, in main()
129 std::cout << BV << std::endl; in main()
/third_party/vk-gl-cts/modules/gles3/performance/
Des3pShaderOperatorTests.cpp1967 BV = VALUE_BOOL_VEC, in init() enumerator
2146 …{ floatCompareGroup, "lessThan", "lessThan", { BV, FV, FV, N }, attrNegPos, -1, false, fal… in init()
2147 …{ floatCompareGroup, "lessThanEqual", "lessThanEqual", { BV, FV, FV, N }, attrNegPos, -1, fals… in init()
2148 …{ floatCompareGroup, "greaterThan", "greaterThan", { BV, FV, FV, N }, attrNegPos, -1, false,… in init()
2149 …{ floatCompareGroup, "greaterThanEqual", "greaterThanEqual", { BV, FV, FV, N }, attrNegPos, -1… in init()
2150 …{ floatCompareGroup, "equal", "equal", { BV, FV, FV, N }, attrNegPos, -1, false, false, PR… in init()
2151 …{ floatCompareGroup, "notEqual", "notEqual", { BV, FV, FV, N }, attrNegPos, -1, false, fal… in init()
2153 …{ intCompareGroup, "lessThan", "lessThan", { BV, IV, IV, N }, attrNegPos, -1, false, fals… in init()
2154 …{ intCompareGroup, "lessThanEqual", "lessThanEqual", { BV, IV, IV, N }, attrNegPos, -1, false… in init()
2155 …{ intCompareGroup, "greaterThan", "greaterThan", { BV, IV, IV, N }, attrNegPos, -1, false, … in init()
[all …]
/third_party/vk-gl-cts/modules/gles2/performance/
Des2pShaderOperatorTests.cpp1957 BV = VALUE_BOOL_VEC, in init() enumerator
2103 …{ floatCompareGroup, "lessThan", "lessThan", { BV, FV, FV, N }, attrNegPos, -1, false, fal… in init()
2104 …{ floatCompareGroup, "lessThanEqual", "lessThanEqual", { BV, FV, FV, N }, attrNegPos, -1, fals… in init()
2105 …{ floatCompareGroup, "greaterThan", "greaterThan", { BV, FV, FV, N }, attrNegPos, -1, false,… in init()
2106 …{ floatCompareGroup, "greaterThanEqual", "greaterThanEqual", { BV, FV, FV, N }, attrNegPos, -1… in init()
2107 …{ floatCompareGroup, "equal", "equal", { BV, FV, FV, N }, attrNegPos, -1, false, false, PR… in init()
2108 …{ floatCompareGroup, "notEqual", "notEqual", { BV, FV, FV, N }, attrNegPos, -1, false, fal… in init()
2110 …{ intCompareGroup, "lessThan", "lessThan", { BV, IV, IV, N }, attrNegPos, -1, false, fals… in init()
2111 …{ intCompareGroup, "lessThanEqual", "lessThanEqual", { BV, IV, IV, N }, attrNegPos, -1, false… in init()
2112 …{ intCompareGroup, "greaterThan", "greaterThan", { BV, IV, IV, N }, attrNegPos, -1, false, … in init()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DRegisterScavenging.h206 void addRegUnits(BitVector &BV, Register Reg);
209 void removeRegUnits(BitVector &BV, Register Reg);
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fShaderOperatorTests.cpp222 BV = VALUE_BOOL_VEC, enumerator
1153 …<< BuiltinFuncInfo("lessThan", "lessThan", BV, Value(FV, -1.0f, 1.0f), Value(FV, -1.0f, 1.0f)…
1154 …<< BuiltinFuncInfo("lessThanEqual", "lessThanEqual", BV, Value(FV, -1.0f, 1.0f), Value(FV, -1.0f…
1155 …<< BuiltinFuncInfo("greaterThan", "greaterThan", BV, Value(FV, -1.0f, 1.0f), Value(FV, -1.0f, 1…
1156 …<< BuiltinFuncInfo("greaterThanEqual", "greaterThanEqual", BV, Value(FV, -1.0f, 1.0f), Value(FV, …
1157 …<< BuiltinFuncInfo("equal", "equal", BV, Value(FV, -1.0f, 1.0f), Value(FV, -1.0f, 1.0f), not…
1158 …<< BuiltinFuncInfo("notEqual", "notEqual", BV, Value(FV, -1.0f, 1.0f), Value(FV, -1.0f, 1.0f)…
1163 …<< BuiltinFuncInfo("lessThan", "lessThan", BV, Value(IV, -5.2f, 4.9f), Value(IV, -5.0f, 5.0f)…
1164 …<< BuiltinFuncInfo("lessThanEqual", "lessThanEqual", BV, Value(IV, -5.2f, 4.9f), Value(IV, -5.0f…
1165 …<< BuiltinFuncInfo("greaterThan", "greaterThan", BV, Value(IV, -5.2f, 4.9f), Value(IV, -5.0f, 5…
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/cff/
Dcffload.c1350 const FT_Int32* weight = &blend->BV[1]; in cff_blend_doBlend()
1434 if ( FT_REALLOC( blend->BV, in cff_blend_build_vector()
1435 blend->lenBV * sizeof( *blend->BV ), in cff_blend_build_vector()
1436 len * sizeof( *blend->BV ) ) ) in cff_blend_build_vector()
1452 blend->BV[master] = FT_FIXED_ONE; in cff_blend_build_vector()
1456 blend->BV[master] / 65536.0 )); in cff_blend_build_vector()
1476 blend->BV[master] = 0; in cff_blend_build_vector()
1482 blend->BV[master] = FT_FIXED_ONE; /* default */ in cff_blend_build_vector()
1525 blend->BV[master] = FT_MulFix( blend->BV[master], axisScalar ); in cff_blend_build_vector()
1529 blend->BV[master] / 65536.0 )); in cff_blend_build_vector()
[all …]
/third_party/freetype/src/cff/
Dcffload.c1356 const FT_Int32* weight = &blend->BV[1]; in cff_blend_doBlend()
1440 if ( FT_REALLOC( blend->BV, in cff_blend_build_vector()
1441 blend->lenBV * sizeof( *blend->BV ), in cff_blend_build_vector()
1442 len * sizeof( *blend->BV ) ) ) in cff_blend_build_vector()
1458 blend->BV[master] = FT_FIXED_ONE; in cff_blend_build_vector()
1462 blend->BV[master] / 65536.0 )); in cff_blend_build_vector()
1482 blend->BV[master] = 0; in cff_blend_build_vector()
1488 blend->BV[master] = FT_FIXED_ONE; /* default */ in cff_blend_build_vector()
1531 blend->BV[master] = FT_MulFix( blend->BV[master], axisScalar ); in cff_blend_build_vector()
1535 blend->BV[master] / 65536.0 )); in cff_blend_build_vector()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/region/
Dru_UA.txt7 BV{"О-в Буве"}
Dur_IN.txt7 BV{"جزیرہ بوویت"}
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceBitVector.h44 SmallBitVector(const SmallBitVector &BV) { *this = BV; } in SmallBitVector() argument
46 SmallBitVector &operator=(const SmallBitVector &BV) {
47 if (&BV != this) {
48 resize(BV.size());
49 memcpy(Bits, BV.Bits, sizeof(Bits));
/third_party/icu/icu4c/source/data/region/
Dru_UA.txt8 BV{"О-в Буве"}
Dur_IN.txt8 BV{"جزیرہ بوویت"}
/third_party/skia/third_party/externals/icu/source/data/region/
Dru_UA.txt8 BV{"О-в Буве"}
Dur_IN.txt8 BV{"جزیرہ بوویت"}
/third_party/skia/third_party/externals/freetype/src/cff/
Dcffload.c1363 const FT_Int32* weight = &blend->BV[1]; in cff_blend_doBlend()
1447 if ( FT_QRENEW_ARRAY( blend->BV, blend->lenBV, len ) ) in cff_blend_build_vector()
1463 blend->BV[master] = FT_FIXED_ONE; in cff_blend_build_vector()
1465 FT_TRACE4(( " [ %f ", blend->BV[master] / 65536.0 )); in cff_blend_build_vector()
1485 blend->BV[master] = 0; in cff_blend_build_vector()
1491 blend->BV[master] = FT_FIXED_ONE; /* default */ in cff_blend_build_vector()
1534 blend->BV[master] = FT_MulFix( blend->BV[master], axisScalar ); in cff_blend_build_vector()
1538 blend->BV[master] / 65536.0 )); in cff_blend_build_vector()
2177 FT_FREE( subfont->blend.BV ); in cff_subfont_done()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-shape-complex-thai.cc68 BV, enumerator
81 return BV; in get_mark_type()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-ot-shape-complex-thai.cc64 BV, enumerator
77 return BV; in get_mark_type()
/third_party/harfbuzz/src/
Dhb-ot-shape-complex-thai.cc68 BV, enumerator
81 return BV; in get_mark_type()

12345678910>>...21