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

  /external/llvm/lib/Support/
FoldingSet.cpp 214 NumNodes = 0;
227 NumNodes = 0;
239 NumNodes = 0;
294 if (NumNodes+1 > NumBuckets*2) {
300 ++NumNodes;
326 --NumNodes;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 268 /// NumNodes - The number of nodes in the graph.
269 unsigned NumNodes;
316 bool empty() const { return NumNodes == 0; }
317 unsigned size() const { return NumNodes; }
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 51 : NumNodes(0), reclaimNodes(false), reclaimCounter(CounterTop) {}
126 --NumNodes;
264 ++NumNodes;
  /external/llvm/include/llvm/ADT/
FoldingSet.h 121 /// NumNodes - Number of nodes in the folding set. Growth occurs when NumNodes
123 unsigned NumNodes;
178 unsigned size() const { return NumNodes; }
181 bool empty() const { return NumNodes == 0; }
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 876 EmitMergeInputChainsMatcher(const unsigned *nodes, unsigned NumNodes)
877 : Matcher(EmitMergeInputChains), ChainNodes(nodes, nodes+NumNodes) {}
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 278 unsigned NumNodes = 0;
282 ++NumNodes;
290 SUnits.reserve(NumNodes * 2);
SelectionDAGISel.cpp     [all...]

Completed in 772 milliseconds