Searched refs:NextNode (Results 1 – 10 of 10) sorted by relevance
| /netbsd-src/sys/external/bsd/acpica/dist/namespace/ |
| H A D | nsalloc.c | 193 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 D | nswalk.c | 117 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 D | nsnames.c | 266 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 D | SuffixTree.cpp | 127 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 D | aslprintf.c | 150 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 D | evregion.c | 914 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 D | ASTDiagnostic.cpp | 576 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 D | ASTMatchersInternal.h | 1859 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 D | ASTMatchers.h | 7083 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 D | BugReporter.cpp | 2752 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()
|