Home
last modified time | relevance | path

Searched refs:NextNode (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/sys/external/bsd/acpica/dist/namespace/
H A Dnsalloc.c193 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsRemoveNode() local
202 NextNode = ParentNode->Child; in AcpiNsRemoveNode()
206 while (NextNode != Node) in AcpiNsRemoveNode()
208 PrevNode = NextNode; in AcpiNsRemoveNode()
209 NextNode = NextNode->Peer; in AcpiNsRemoveNode()
344 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsDeleteChildren() local
358 NextNode = ParentNode->Child; in AcpiNsDeleteChildren()
359 while (NextNode) in AcpiNsDeleteChildren()
363 if (NextNode->Child) in AcpiNsDeleteChildren()
366 ParentNode, NextNode)); in AcpiNsDeleteChildren()
[all …]
H A Dnswalk.c117 ACPI_NAMESPACE_NODE *NextNode = NULL; in AcpiNsGetNextNodeTyped() local
123 NextNode = AcpiNsGetNextNode (ParentNode, ChildNode); in AcpiNsGetNextNodeTyped()
131 return (NextNode); in AcpiNsGetNextNodeTyped()
136 while (NextNode) in AcpiNsGetNextNodeTyped()
140 if (NextNode->Type == Type) in AcpiNsGetNextNodeTyped()
142 return (NextNode); in AcpiNsGetNextNodeTyped()
147 NextNode = NextNode->Peer; in AcpiNsGetNextNodeTyped()
H A Dnsnames.c266 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsBuildNormalizedPath() local
295 NextNode = Node; in AcpiNsBuildNormalizedPath()
296 while (NextNode && NextNode != AcpiGbl_RootNode) in AcpiNsBuildNormalizedPath()
298 if (NextNode != Node) in AcpiNsBuildNormalizedPath()
303 ACPI_MOVE_32_TO_32 (Name, &NextNode->Name); in AcpiNsBuildNormalizedPath()
318 NextNode = NextNode->Parent; in AcpiNsBuildNormalizedPath()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DSuffixTree.cpp127 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar]; in extend() local
129 unsigned SubstringLen = NextNode->size(); in extend()
138 Active.Node = NextNode; in extend()
147 if (Str[NextNode->StartIdx + Active.Len] == LastChar) { in extend()
175 insertInternalNode(Active.Node, NextNode->StartIdx, in extend()
176 NextNode->StartIdx + Active.Len - 1, FirstChar); in extend()
184 NextNode->StartIdx += Active.Len; in extend()
185 SplitNode->Children[Str[NextNode->StartIdx]] = NextNode; in extend()
/netbsd-src/sys/external/bsd/acpica/dist/compiler/
H A Daslprintf.c150 ACPI_PARSE_OBJECT *NextNode; in OpcParsePrintf() local
232 NextNode = ArgNode->Asl.Next; in OpcParsePrintf()
235 ArgNode = NextNode; in OpcParsePrintf()
242 NextNode = ArgNode->Asl.Next; in OpcParsePrintf()
262 ArgNode = NextNode; in OpcParsePrintf()
/netbsd-src/sys/external/bsd/acpica/dist/events/
H A Devregion.c914 ACPI_NAMESPACE_NODE *NextNode; in AcpiEvExecuteOrphanRegMethod() local
947 NextNode = AcpiNsGetNextNode (DeviceNode, NULL); in AcpiEvExecuteOrphanRegMethod()
948 while (NextNode) in AcpiEvExecuteOrphanRegMethod()
950 if ((NextNode->Type == ACPI_TYPE_REGION) && in AcpiEvExecuteOrphanRegMethod()
951 (NextNode->Object) && in AcpiEvExecuteOrphanRegMethod()
952 (NextNode->Object->Region.SpaceId == SpaceId)) in AcpiEvExecuteOrphanRegMethod()
957 NextNode = AcpiNsGetNextNode (DeviceNode, NextNode); in AcpiEvExecuteOrphanRegMethod()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTDiagnostic.cpp576 unsigned NextNode = 0; member
757 for (i = Node.ChildNode; FlatTree[i].NextNode != 0; in AddNode()
758 i = FlatTree[i].NextNode) { in AddNode()
760 FlatTree[i].NextNode = NextFreeNode; in AddNode()
896 if (FlatTree[ReadNode].NextNode == 0) in AdvanceSibling()
899 ReadNode = FlatTree[ReadNode].NextNode; in AdvanceSibling()
905 return FlatTree[ReadNode].NextNode != 0; in HasNextSibling()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1859 QualType NextNode = (Node.*TraverseFunction)();
1860 if (NextNode.isNull())
1862 return this->InnerMatcher.matches(DynTypedNode::create(NextNode), Finder,
1884 TypeLoc NextNode = (Node.*TraverseFunction)();
1885 if (!NextNode)
1887 return this->InnerMatcher.matches(DynTypedNode::create(NextNode), Finder,
H A DASTMatchers.h7083 const NestedNameSpecifier *NextNode = Node.getPrefix();
7084 if (!NextNode)
7086 return InnerMatcher.matches(*NextNode, Finder, Builder);
7101 NestedNameSpecifierLoc NextNode = Node.getPrefix();
7102 if (!NextNode)
7104 return InnerMatcher.matches(NextNode, Finder, Builder);
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2752 const ExplodedNode *NextNode = ErrorNode->getFirstPred(); in generateVisitorsDiagnostics() local
2753 while (NextNode) { in generateVisitorsDiagnostics()
2765 const ExplodedNode *Pred = NextNode->getFirstPred(); in generateVisitorsDiagnostics()
2784 auto P = V->VisitNode(NextNode, BRC, *R); in generateVisitorsDiagnostics()
2786 (*Notes)[NextNode].push_back(std::move(P)); in generateVisitorsDiagnostics()
2792 NextNode = Pred; in generateVisitorsDiagnostics()