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

  /external/llvm/tools/opt/
BreakpointPrinter.cpp 54 StringSet<> Processed;
65 if (!Name.empty() && Processed.insert(Name)) {
  /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/chromium_org/third_party/webrtc/modules/video_coding/main/source/
video_coding_impl.cc 41 VCMProcessTimer::Processed() {
  /external/llvm/include/llvm/Analysis/
IVUsers.h 126 SmallPtrSet<Instruction*,16> Processed;
169 return Processed.count(Inst);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 41 /// ReadyToProcess - All operands have been processed, so this node is ready
53 /// Processed - This is a node that has already been processed.
54 Processed = -3
118 /// processed.
180 /// GetPromotedInteger - Given a processed operand Op which was promoted to a
295 /// GetExpandedInteger - Given a processed operand Op which was expanded into
369 /// GetSoftenedFloat - Given a processed operand Op which was converted to an
440 /// GetExpandedFloat - Given a processed operand Op which was expanded into
499 /// GetScalarizedVector - Given a processed one-element vector Op which wa
    [all...]
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 250 SmallSet<unsigned, 8> Processed;
253 if (Processed.count(SubReg))
264 Processed.insert(*SS);
TwoAddressInstructionPass.cpp 81 // The current basic block being processed.
88 // Set of already processed instructions in the current block.
89 SmallPtrSet<MachineInstr*, 8> Processed;
313 /// two-address instruction which is being processed. It also returns the last
504 /// the two-address instruction that's being processed.
669 if (IsCopy && !Processed.insert(UseMI))
705 /// processCopy - If the specified instruction is not yet processed, process it
718 if (Processed.count(MI))
737 Processed.insert(MI);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 346 Processed(false) {}
360 bool isProcessed() { return Processed; }
361 void process() { Processed = true; }
374 bool Processed;
596 // Check if the node needs to be processed.
612 // It has been processed, and there are no more children to process,
LoopStrengthReduce.cpp 747 SmallPtrSet<const SCEV*, 8> &Processed,
756 Processed, SE);
759 Processed, SE);
762 Processed, SE);
765 if (!Processed.insert(S))
771 if (isHighCostExpansion(*I, Processed, SE))
781 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
    [all...]

Completed in 2427 milliseconds