Searched refs:NumNodes (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DFoldingSet.cpp233 NumNodes = 0;
237 : Buckets(Arg.Buckets), NumBuckets(Arg.NumBuckets), NumNodes(Arg.NumNodes) {
240 Arg.NumNodes = 0;
247 NumNodes = RHS.NumNodes;
250 RHS.NumNodes = 0;
266 NumNodes = 0;
279 NumNodes = 0;
349 if (NumNodes
[all...]
/freebsd-12-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbstats.c438 NumNodes++;
452 SizeOfNodeEntries = NumNodes * (UINT32) sizeof (ACPI_NAMESPACE_NODE);
453 SizeOfAcpiObjects = NumNodes * (UINT32) sizeof (ACPI_OPERAND_OBJECT);
/freebsd-12-stable/stand/i386/libi386/
H A Dbiospnp.c97 #define biospnp_f00(NumNodes, NodeSize) biospnp_call(0x00, "ll", NumNodes, NodeSize)
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp167 --NumNodes;
416 ++NumNodes;
417 new (V) NodeTy(L, State, NumNodes, IsSink);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h328 /// NumNodes - The number of nodes in the graph.
329 int64_t NumNodes = 0; member in class:clang::ento::ExplodedGraph
385 bool empty() const { return NumNodes == 0; }
386 unsigned size() const { return NumNodes; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp613 unsigned NumNodes = 0; member in class:ScheduleDAGInstrs::Value2SUsMap
621 /// To keep NumNodes up to date, insert() is used instead of
630 NumNodes++;
637 assert(NumNodes >= Itr->second.size());
638 NumNodes -= Itr->second.size();
647 NumNodes = 0;
650 unsigned inline size() const { return NumNodes; }
654 NumNodes = 0;
656 NumNodes += I.second.size();
722 // Recompute the size of the map (NumNodes)
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFoldingSet.h122 /// NumNodes - Number of nodes in the folding set. Growth occurs when NumNodes
124 unsigned NumNodes; member in class:llvm::FoldingSetBase
152 unsigned size() const { return NumNodes; }
155 bool empty() const { return NumNodes == 0; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp768 unsigned NumNodes = Sequence.size(); local
770 for (unsigned i = 0; i != NumNodes; ++i) {
771 SDNode *N = Sequence[NumNodes-i-1];
H A DScheduleDAGSDNodes.cpp326 unsigned NumNodes = 0;
329 ++NumNodes;
337 SUnits.reserve(NumNodes * 2);

Completed in 209 milliseconds