OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
;
178
unsigned size() const { return
NumNodes
; }
181
bool empty() const { return
NumNodes
== 0; }
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h
260
///
NumNodes
- The number of nodes in the graph.
261
unsigned
NumNodes
;
298
:
NumNodes
(0), recentlyAllocatedNodes(0),
306
bool empty() const { return
NumNodes
== 0; }
307
unsigned size() const { return
NumNodes
; }
/external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp
270
unsigned
NumNodes
= 0;
274
++
NumNodes
;
282
SUnits.reserve(
NumNodes
* 2);
Completed in 83 milliseconds