/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | GlobPattern.cpp | 28 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/ |
D | input.asm | 36 %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/ |
D | cavsdsp.c | 345 #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/ |
D | MachineFrameInfo.cpp | 116 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()
|
D | AggressiveAntiDepBreaker.cpp | 526 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/ |
D | SmallBitVector.h | 105 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/ |
D | 32.txt | 28 324630|TISMI BV 63 324802|TISMI BV 65 324807|MessageBird BV
|
/third_party/boost/libs/numeric/ublas/doc/samples/ |
D | assignment_examples.cpp | 125 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/ |
D | es3pShaderOperatorTests.cpp | 1967 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/ |
D | es2pShaderOperatorTests.cpp | 1957 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/ |
D | RegisterScavenging.h | 206 void addRegUnits(BitVector &BV, Register Reg); 209 void removeRegUnits(BitVector &BV, Register Reg);
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fShaderOperatorTests.cpp | 222 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/ |
D | cffload.c | 1350 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/ |
D | cffload.c | 1356 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/ |
D | ru_UA.txt | 7 BV{"О-в Буве"}
|
D | ur_IN.txt | 7 BV{"جزیرہ بوویت"}
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceBitVector.h | 44 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/ |
D | ru_UA.txt | 8 BV{"О-в Буве"}
|
D | ur_IN.txt | 8 BV{"جزیرہ بوویت"}
|
/third_party/skia/third_party/externals/icu/source/data/region/ |
D | ru_UA.txt | 8 BV{"О-в Буве"}
|
D | ur_IN.txt | 8 BV{"جزیرہ بوویت"}
|
/third_party/skia/third_party/externals/freetype/src/cff/ |
D | cffload.c | 1363 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/ |
D | hb-ot-shape-complex-thai.cc | 68 BV, enumerator 81 return BV; in get_mark_type()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-shape-complex-thai.cc | 64 BV, enumerator 77 return BV; in get_mark_type()
|
/third_party/harfbuzz/src/ |
D | hb-ot-shape-complex-thai.cc | 68 BV, enumerator 81 return BV; in get_mark_type()
|