/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | ExecutionDomainFix.cpp | 35 void ExecutionDomainFix::release(DomainValue *DV) { in release() argument 36 while (DV) { in release() 37 assert(DV->Refs && "Bad DomainValue"); in release() 38 if (--DV->Refs) in release() 42 if (DV->AvailableDomains && !DV->isCollapsed()) in release() 43 collapse(DV, DV->getFirstDomain()); in release() 45 DomainValue *Next = DV->Next; in release() 46 DV->clear(); in release() 47 Avail.push_back(DV); in release() 49 DV = Next; in release() [all …]
|
D | AntiDepBreaker.h | 72 for (const auto &DV : make_range(DbgValues.crbegin(), DbgValues.crend())) { in UpdateDbgValues() local 73 MachineInstr *PrevMI = DV.second; in UpdateDbgValues() 75 MachineInstr *DbgMI = DV.first; in UpdateDbgValues()
|
D | PrologEpilogInserter.cpp | 196 auto Overlaps = [Var, Expr](const MachineInstr *DV) { in stashEntryDbgValues() argument 197 return Var == DV->getDebugVariable() && in stashEntryDbgValues() 198 Expr->fragmentsOverlap(DV->getDebugExpression()); in stashEntryDbgValues()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | LegacyDivergenceAnalysis.cpp | 98 PostDominatorTree &PDT, DenseSet<const Value *> &DV, in DivergencePropagator() argument 100 : F(F), TTI(TTI), DT(DT), PDT(PDT), DV(DV), DU(DU) {} in DivergencePropagator() 123 DenseSet<const Value *> &DV; // Stores all divergent values. member in __anon18a3b6620111::DivergencePropagator 130 DV.clear(); in populateWithSourcesOfDivergence() 135 DV.insert(&I); in populateWithSourcesOfDivergence() 141 DV.insert(&Arg); in populateWithSourcesOfDivergence() 175 if (!cast<PHINode>(I)->hasConstantOrUndefValue() && DV.insert(&*I).second) in exploreSyncDependency() 207 if (!DV.count(&I)) in exploreSyncDependency() 223 if (DV.insert(UserInst).second) in findUsersOutsideInfluenceRegion() 262 if (!TTI.isAlwaysUniform(U) && DV.insert(U).second) in exploreDataDependency()
|
D | DependenceAnalysis.cpp | 263 DV = std::make_unique<DVEntry[]>(CommonLevels); in FullDependence() 271 return DV[Level - 1].Direction; in getDirection() 278 return DV[Level - 1].Distance; in getDistance() 287 return DV[Level - 1].Scalar; in isScalar() 295 return DV[Level - 1].PeelFirst; in isPeelFirst() 303 return DV[Level - 1].PeelLast; in isPeelLast() 310 return DV[Level - 1].Splitable; in isSplitable() 1195 Result.DV[Level].Distance = SE->getConstant(Distance); in strongSIVtest() 1198 Result.DV[Level].Direction &= Dependence::DVEntry::LT; in strongSIVtest() 1200 Result.DV[Level].Direction &= Dependence::DVEntry::GT; in strongSIVtest() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ExecutionDomainFix.h | 156 DomainValue *retain(DomainValue *DV) { in retain() argument 157 if (DV) in retain() 158 ++DV->Refs; in retain() 159 return DV; in retain() 171 void setLiveReg(int rx, DomainValue *DV);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 580 DIE *DwarfCompileUnit::constructVariableDIE(DbgVariable &DV, bool Abstract) { in constructVariableDIE() argument 581 auto D = constructVariableDIEImpl(DV, Abstract); in constructVariableDIE() 582 DV.setDIE(*D); in constructVariableDIE() 598 DIE *DwarfCompileUnit::constructVariableDIEImpl(const DbgVariable &DV, in constructVariableDIEImpl() argument 601 auto VariableDie = DIE::get(DIEValueAllocator, DV.getTag()); in constructVariableDIEImpl() 602 insertDIE(DV.getVariable(), VariableDie); in constructVariableDIEImpl() 605 applyVariableAttributes(DV, *VariableDie); in constructVariableDIEImpl() 611 unsigned Offset = DV.getDebugLocListIndex(); in constructVariableDIEImpl() 614 auto TagOffset = DV.getDebugLocListTagOffset(); in constructVariableDIEImpl() 622 if (auto *DVal = DV.getValueLoc()) { in constructVariableDIEImpl() [all …]
|
D | DbgEntityHistoryCalculator.cpp | 159 static void handleNewDebugValue(InlinedEntity Var, const MachineInstr &DV, in handleNewDebugValue() argument 164 if (HistMap.startDbgValue(Var, DV, NewIndex)) { in handleNewDebugValue() 170 const DIExpression *DIExpr = DV.getDebugExpression(); in handleNewDebugValue() 174 const MachineInstr &DV = *Entry.getInstr(); in handleNewDebugValue() local 175 bool Overlaps = DIExpr->fragmentsOverlap(DV.getDebugExpression()); in handleNewDebugValue() 180 if (Register Reg = isDescribedByReg(DV)) in handleNewDebugValue() 186 if (Register NewReg = isDescribedByReg(DV)) { in handleNewDebugValue()
|
D | DwarfCompileUnit.h | 89 DIE *constructVariableDIEImpl(const DbgVariable &DV, bool Abstract); 210 DIE *constructVariableDIE(DbgVariable &DV, bool Abstract = false); 212 DIE *constructVariableDIE(DbgVariable &DV, const LexicalScope &Scope, 322 void addVariableAddress(const DbgVariable &DV, DIE &Die, 332 void addComplexAddress(const DbgVariable &DV, DIE &Die,
|
D | DwarfFile.cpp | 106 const DILocalVariable *DV = Var->getVariable(); in addScopeVariable() local 107 if (unsigned ArgNum = DV->getArg()) { in addScopeVariable()
|
/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 …]
|
D | v4l2_fmt.c | 90 { AV_FMT(NONE), AV_CODEC(DVVIDEO), V4L2_FMT(DV) },
|
/third_party/node/deps/npm/node_modules/jsbn/ |
D | index.js | 88 BigInteger.prototype.DV = (1<<dbits); method in BigInteger 124 else if(x < -1) this[0] = x+this.DV; 318 if(c < -1) r[i++] = this.DV+c; 344 if((r[i+x.t]+=x.am(i+1,2*x[i],r,2*i+1,c,x.t-i-1)) >= x.DV) { 345 r[i+x.t] -= x.DV; 448 y = (y*(2-x*y%this.DV))%this.DV; // y == 1/x mod 2^dbits 450 return (y>0)?this.DV-y:-y; 492 while(x[j] >= x.DV) { x[j] -= x.DV; x[++j]++; } 579 if(this.t == 1) return this[0]-this.DV; 843 else if(c < -1) r[i++] = this.DV+c; [all …]
|
/third_party/libxml2/result/HTML/ |
D | wired.html.err | 161 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O 164 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O 167 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O 170 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O 173 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O 176 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O 179 option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&OPs 182 lue="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&OPs=MDRTP&MT
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Format.h | 165 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U, 167 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Format.h | 174 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U, 176 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | DebugInfo.cpp | 203 auto *DV = dyn_cast<DILocalVariable>(N); in processDeclare() local 204 if (!DV) in processDeclare() 207 if (!NodesSeen.insert(DV).second) in processDeclare() 209 processScope(DV->getScope()); in processDeclare() 210 processType(DV->getType()); in processDeclare() 218 auto *DV = dyn_cast<DILocalVariable>(N); in processValue() local 219 if (!DV) in processValue() 222 if (!NodesSeen.insert(DV).second) in processValue() 224 processScope(DV->getScope()); in processValue() 225 processType(DV->getType()); in processValue()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 742 for (auto DV : DAG->GetDbgValues(N)) { in ProcessSDDbgValues() local 743 if (DV->isEmitted()) in ProcessSDDbgValues() 745 unsigned DVOrder = DV->getOrder(); in ProcessSDDbgValues() 747 MachineInstr *DbgMI = Emitter.EmitDbgValue(DV, VRBaseMap); in ProcessSDDbgValues()
|
D | ScheduleDAGFast.cpp | 778 for (auto DV : DAG->GetDbgValues(N)) { in EmitSchedule() local 779 if (!DV->isEmitted()) in EmitSchedule() 780 if (auto *DbgMI = Emitter.EmitDbgValue(DV, VRBaseMap)) in EmitSchedule()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
D | BTFDebug.cpp | 886 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) { in beginFunctionImpl() local 888 uint32_t Arg = DV->getArg(); in beginFunctionImpl() 890 visitTypeEntry(DV->getType()); in beginFunctionImpl() 891 FuncArgNames[Arg] = DV->getName(); in beginFunctionImpl()
|
/third_party/ffmpeg/tests/fate/ |
D | seek.mak | 68 FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, DVVIDEO, DV) += dv 69 FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, DVVIDEO, DV) += dv-411 70 FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, DVVIDEO, DV) += dv-50
|
/third_party/ffmpeg/doc/ |
D | indevs.texi | 183 …DV data to the framework (like tape-based camcorders), setting this option to false results in ext… 215 Record raw DV data from a suitable input device and write the output into out.dv: 776 FireWire DV/HDV input device using libiec61883. 784 FireWire stack (juju). This is the default DV/HDV input method in Linux 795 Override autodetection of DV/HDV. This should only be used if auto 797 should be prohibited. Treating a DV device as HDV (or vice versa) will 802 Set maximum size of buffer for incoming data, in frames. For DV, this 820 Grab and show the input of a FireWire DV/HDV device. 826 Grab and record the input of a FireWire DV/HDV device,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 1293 Value *DV = SI->getValueOperand(); in ConvertDebugDeclareToDebugValue() local 1297 if (!valueCoversEntireFragment(DV->getType(), DII)) { in ConvertDebugDeclareToDebugValue() 1305 DV = UndefValue::get(DV->getType()); in ConvertDebugDeclareToDebugValue() 1307 Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, SI); in ConvertDebugDeclareToDebugValue() 1312 Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, SI); in ConvertDebugDeclareToDebugValue()
|
/third_party/gstreamer/gstreamer/docs/random/ |
D | mimetypes | 118 7 - DV (Digital Video) 252 8 - Digital Video (DV) 429 12 - DV Audio
|
/third_party/flutter/skia/third_party/externals/icu/source/data/region/ |
D | et.txt | 76 CD{"Kongo DV"}
|