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

  /external/llvm/include/llvm/ADT/
FoldingSet.h 121 /// NumNodes - Number of nodes in the folding set. Growth occurs when NumNodes
123 unsigned NumNodes;
179 unsigned size() const { return NumNodes; }
182 bool empty() const { return NumNodes == 0; }
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 271 /// NumNodes - The number of nodes in the graph.
272 unsigned NumNodes;
321 bool empty() const { return NumNodes == 0; }
322 unsigned size() const { return NumNodes; }
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 780 unsigned NumNodes = Sequence.size();
781 for (unsigned i = 0; i != NumNodes; ++i) {
782 SDNode *N = Sequence[NumNodes-i-1];

Completed in 72 milliseconds