Home
last modified time | relevance | path

Searched refs:Processed (Results 1 - 25 of 27) sorted by relevance

12

/third_party/lzma/CPP/7zip/Common/
H A DCWrappers.h27 UInt64 Processed; member
48 UInt64 Processed; member
62 UInt64 Processed; member
73 Processed = 0; in Init()
77 UInt64 GetProcessed() const { return Processed + (size_t)(Cur - Buf); } in GetProcessed()
94 UInt64 Processed;
105 Processed = 0;
109 // UInt64 GetProcessed() const { return Processed + (Cur - Buf); }
135 UInt64 Processed; member
146 Processed in Init()
[all...]
H A DCWrappers.cpp82 p->Processed += curSize; in MyRead()
99 p->Processed += size; in MyWrite()
108 Processed = 0; in Init()
117 Processed = 0; in Init()
184 Processed += (size_t)(Cur - Buf); in ReadByteFromNewBlock()
245 p->Processed += avail;
283 Processed += size; in Flush()
342 p->Processed += size;
/third_party/lzma/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp22 Processed.ClearAndReserve(numFiles); in Init()
50 while (Processed.Size() < _numFiles) in OpenStream()
53 const HRESULT result = _updateCallback->GetStream(_indexes[Processed.Size()], &stream); in OpenStream()
123 // const UInt32 index = _indexes[Processed.Size()]; in AddFileInfo()
124 Processed.AddInReserved(isProcessed); in AddFileInfo()
193 if (Processed.Size() >= _numFiles) in Read()
245 *streamIndexRes = Processed.Size();
246 if (Processed.Size() >= _numFiles)
H A D7zFolderInStream.h58 CRecordVector<bool> Processed; member
75 bool WasFinished() const { return Processed.Size() == _numFiles; } in WasFinished()
/third_party/lzma/CPP/7zip/Bundles/LzmaSpec/
H A DLzmaSpec.cpp33 UInt64 Processed; member
35 void Init() { Processed = 0; } in Init()
42 Processed++; in ReadByte()
51 UInt64 Processed; member
53 void Init() { Processed = 0; } in Init()
59 Processed++; in WriteByte()
665 PrintUInt64("Read ", inStream.Processed); in main2()
666 PrintUInt64("Written ", lzmaDecoder.OutWindow.OutStream.Processed); in main2()
676 if (lzmaDecoder.OutWindow.OutStream.Processed != unpackSize) in main2()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DIVUsers.h100 SmallPtrSet<Instruction*, 16> Processed; member in llvm::IVUsers
115 SE(std::move(X.SE)), Processed(std::move(X.Processed)), in IVUsers()
151 return Processed.count(Inst); in isIVUserOrOperand()
H A DScalarEvolutionExpander.h182 SmallPtrSet<const SCEV *, 8> Processed; in isHighCostExpansion() local
183 return isHighCostExpansionHelper(Expr, L, At, Processed); in isHighCostExpansion()
327 SmallPtrSetImpl<const SCEV *> &Processed);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DCFIInstrInserter.cpp81 bool Processed = false; member
152 if (MBBVector[MBB.getNumber()].Processed) continue; in calculateCFAInfo()
216 MBBInfo.Processed = true; in calculateOutgoingCFAInfo()
230 if (CurrentInfo.Processed) in updateSuccCFAInfo()
236 if (!SuccInfo.Processed) { in updateSuccCFAInfo()
H A DLiveVariables.cpp250 SmallSet<unsigned, 8> Processed; in HandlePhysRegUse() local
253 if (Processed.count(SubReg)) in HandlePhysRegUse()
264 Processed.insert(*SS); in HandlePhysRegUse()
H A DTwoAddressInstructionPass.cpp110 SmallPtrSet<MachineInstr*, 8> Processed; member in __anon24133::TwoAddressInstructionPass
781 if (IsCopy && !Processed.insert(UseMI).second) in scanUses()
830 if (Processed.count(MI)) in processCopy()
849 Processed.insert(MI); in processCopy()
1701 Processed.clear(); in runOnMachineFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DIVUsers.cpp172 // Add this IV user to the Processed set before returning false to ensure that in AddUsersImpl()
174 if (!Processed.insert(I).second) in AddUsersImpl()
213 if (isa<PHINode>(User) && Processed.count(User)) in AddUsersImpl()
232 // If User is already in Processed, we don't want to recurse into it again, in AddUsersImpl()
236 if (isa<PHINode>(User) || Processed.count(User) || in AddUsersImpl()
242 } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) { in AddUsersImpl()
350 Processed.clear(); in releaseMemory()
424 Parent->Processed.erase(this->getUser()); in deleted()
H A DScalarEvolutionExpander.cpp2133 SmallPtrSetImpl<const SCEV *> &Processed) { in isHighCostExpansionHelper()
2147 L, At, Processed); in isHighCostExpansionHelper()
2150 L, At, Processed); in isHighCostExpansionHelper()
2153 L, At, Processed); in isHighCostExpansionHelper()
2156 if (!Processed.insert(S).second) in isHighCostExpansionHelper()
2166 if (isHighCostExpansionHelper(UDivExpr->getLHS(), L, At, Processed)) in isHighCostExpansionHelper()
2203 if (isHighCostExpansionHelper(Op, L, At, Processed)) in isHighCostExpansionHelper()
2131 isHighCostExpansionHelper( const SCEV *S, Loop *L, const Instruction *At, SmallPtrSetImpl<const SCEV *> &Processed) isHighCostExpansionHelper() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp468 PHINode *Processed = Builder.CreatePHI(Ty, 2); in InsertVCTPIntrinsic() local
469 Processed->addIncoming(NumElements, L->getLoopPreheader()); in InsertVCTPIntrinsic()
491 Value *TailPredicate = Builder.CreateCall(VCTP, Processed); in InsertVCTPIntrinsic()
497 Value *Remaining = Builder.CreateSub(Processed, Factor); in InsertVCTPIntrinsic()
498 Processed->addIncoming(Remaining, L->getLoopLatch()); in InsertVCTPIntrinsic()
500 << *Processed << "\n" in InsertVCTPIntrinsic()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp42 // the node being processed may be put in a map before being marked Processed. in PerformExpensiveChecks()
128 if (Node.getNodeId() != Processed) { in PerformExpensiveChecks()
144 dbgs() << "Processed value not in any map!"; in PerformExpensiveChecks()
377 N->setNodeId(Processed); in run()
451 if (Node.getNodeId() != Processed) { in run()
501 if (Op.getNode()->getNodeId() == Processed) in AnalyzeNewNode()
547 if (Val.getNode()->getNodeId() == Processed) in AnalyzeNewValue()
588 N->getNodeId() != DAGTypeLegalizer::Processed &&
612 N->getNodeId() != DAGTypeLegalizer::Processed &&
665 if (M->getNodeId() == Processed) in ReplaceValueWith()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceCfgNode.cpp348 bool Processed = false; member in Ice::__anon25463::PhiDesc
394 if (!Item.Processed && sameVarOrReg(Target, Var, Item.Dest)) { in updatePreds()
484 Item.Processed = false; in advancedPhiLowering()
489 Item.Processed = true; in advancedPhiLowering()
501 if (Item.Processed) in advancedPhiLowering()
505 if (Item2.Processed) in advancedPhiLowering()
517 if (Item.Processed) in advancedPhiLowering()
541 if (Item.Processed) in advancedPhiLowering()
560 if (Item.Processed) in advancedPhiLowering()
583 BestItem->Processed in advancedPhiLowering()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonGenPredicate.cpp515 VectOfInst Processed, Copy; in runOnMachineFunction() local
524 Processed.insert(MI); in runOnMachineFunction()
530 auto Done = [Processed] (MachineInstr *MI) -> bool { in runOnMachineFunction()
531 return Processed.count(MI); in runOnMachineFunction()
/third_party/lzma/CPP/7zip/Compress/
H A DXzDecoder.cpp108 if (outSizeLimit && *outSizeLimit != outWrap.Processed) in Decode()
H A DLzma2Decoder.cpp181 if (outSize && *outSize != outWrap.Processed) in Code()
H A DLzmaEncoder.cpp331 _inputProcessed = inWrap.Processed; in Code()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1032 DenseSet<DIGlobalVariable *> Processed;
1035 if (Processed.insert(GV).second)
1309 DwarfCompileUnit &TheCU, DenseSet<InlinedEntity> &Processed) {
1318 Processed.insert(Var);
1554 DenseSet<InlinedEntity> &Processed) {
1556 collectVariableInfoFromMFTable(TheCU, Processed);
1560 if (Processed.count(IV))
1578 Processed.insert(IV);
1652 Processed.insert(IL);
1662 if (!Processed
[all...]
H A DCodeViewDebug.h344 void collectVariableInfoFromMFTable(DenseSet<InlinedEntity> &Processed);
H A DCodeViewDebug.cpp1143 DenseSet<InlinedEntity> &Processed) { in collectVariableInfoFromMFTable()
1155 Processed.insert(InlinedEntity(VI.Var, VI.Loc->getInlinedAt())); in collectVariableInfoFromMFTable()
1297 DenseSet<InlinedEntity> Processed; in collectVariableInfo() local
1299 collectVariableInfoFromMFTable(Processed); in collectVariableInfo()
1303 if (Processed.count(IV)) in collectVariableInfo()
1142 collectVariableInfoFromMFTable( DenseSet<InlinedEntity> &Processed) collectVariableInfoFromMFTable() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp625 bool isProcessed() { return Processed; } in isProcessed()
626 void process() { Processed = true; } in process()
635 bool Processed = false; member in __anon25107::EarlyCSE::StackNode
H A DLoopStrengthReduce.cpp905 SmallPtrSetImpl<const SCEV*> &Processed, in isHighCostExpansion()
914 Processed, SE); in isHighCostExpansion()
917 Processed, SE); in isHighCostExpansion()
920 Processed, SE); in isHighCostExpansion()
923 if (!Processed.insert(S).second) in isHighCostExpansion()
928 if (isHighCostExpansion(S, Processed, SE)) in isHighCostExpansion()
938 return isHighCostExpansion(Mul->getOperand(1), Processed, SE); in isHighCostExpansion()
2819 SmallPtrSet<const SCEV*, 8> Processed; in isProfitableIncrement() local
2820 return !isHighCostExpansion(IncExpr, Processed, SE); in isProfitableIncrement()
904 isHighCostExpansion(const SCEV *S, SmallPtrSetImpl<const SCEV*> &Processed, ScalarEvolution &SE) isHighCostExpansion() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp351 df_iterator_default_set<MachineBasicBlock*> Processed; in runOnMachineFunction() local
374 for (MachineBasicBlock *BB : depth_first_ext(Entry, Processed)) in runOnMachineFunction()
378 if (MF.size() != Processed.size()) in runOnMachineFunction()
380 if (Processed.insert(&BB).second) in runOnMachineFunction()

Completed in 100 milliseconds

12