HomeSort by relevance Sort by last modified time
    Searched defs:Processed (Results 1 - 10 of 10) sorted by null

  /external/lzma/CPP/7zip/Archive/7z/
7zFolderInStream.h 37 CRecordVector<bool> Processed;
  /external/lzma/CPP/7zip/Common/
CWrappers.h 38 UInt64 Processed;
52 UInt64 Processed;
63 Processed = 0;
67 UInt64 GetProcessed() const { return Processed + (Cur - Buf); }
85 UInt64 Processed;
96 Processed = 0;
99 UInt64 GetProcessed() const { return Processed + (Cur - Buf); }
  /external/llvm/include/llvm/Analysis/
IVUsers.h 126 SmallPtrSet<Instruction*,16> Processed;
169 return Processed.count(Inst);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 42 /// ReadyToProcess - All operands have been processed, so this node is ready
54 /// Processed - This is a node that has already been processed.
55 Processed = -3
119 /// processed.
181 /// GetPromotedInteger - Given a processed operand Op which was promoted to a
296 /// GetExpandedInteger - Given a processed operand Op which was expanded into
370 /// GetSoftenedFloat - Given a processed operand Op which was converted to an
440 /// GetExpandedFloat - Given a processed operand Op which was expanded into
497 /// GetScalarizedVector - Given a processed one-element vector Op which wa
    [all...]
  /external/llvm/tools/opt/
opt.cpp 387 StringSet<> Processed;
398 if (!Name.empty() && Processed.insert(Name)) {
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 250 SmallSet<unsigned, 8> Processed;
253 if (Processed.count(SubReg))
264 Processed.insert(*SS);
TwoAddressInstructionPass.cpp 80 // The current basic block being processed.
87 // Set of already processed instructions in the current block.
88 SmallPtrSet<MachineInstr*, 8> Processed;
312 /// two-address instruction which is being processed. It also returns the last
505 /// the two-address instruction that's being processed.
670 if (IsCopy && !Processed.insert(UseMI))
706 /// processCopy - If the specified instruction is not yet processed, process it
719 if (Processed.count(MI))
738 Processed.insert(MI);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 355 Processed(false) {}
369 bool isProcessed() { return Processed; }
370 void process() { Processed = true; }
383 bool Processed;
601 // Check if the node needs to be processed.
617 // It has been processed, and there are no more children to process,
LoopStrengthReduce.cpp 686 SmallPtrSet<const SCEV*, 8> &Processed,
695 Processed, SE);
698 Processed, SE);
701 Processed, SE);
704 if (!Processed.insert(S))
710 if (isHighCostExpansion(*I, Processed, SE))
720 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
    [all...]
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 780 std::set<const BasicBlock *> Processed;
783 if (Processed.insert(*NBB).second) {
802 Processed.clear();
805 if (Processed.insert(*NBB).second) {
817 Processed.clear();
820 if (Processed.insert(*NBB).second) {
870 std::set<const BasicBlock *> Processed;
873 if (Processed.insert(*NBB).second) {
936 std::set<const BasicBlock *> Processed;
939 if (Processed.insert(*NBB).second)
    [all...]

Completed in 445 milliseconds