Home
last modified time | relevance | path

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

/freebsd-13.1/sys/contrib/dev/acpica/components/namespace/
H A Dnsalloc.c301 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsRemoveNode() local
310 NextNode = ParentNode->Child; in AcpiNsRemoveNode()
314 while (NextNode != Node) in AcpiNsRemoveNode()
316 PrevNode = NextNode; in AcpiNsRemoveNode()
317 NextNode = NextNode->Peer; in AcpiNsRemoveNode()
452 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsDeleteChildren() local
466 NextNode = ParentNode->Child; in AcpiNsDeleteChildren()
467 while (NextNode) in AcpiNsDeleteChildren()
471 if (NextNode->Child) in AcpiNsDeleteChildren()
481 NodeToDelete = NextNode; in AcpiNsDeleteChildren()
[all …]
H A Dnswalk.c225 ACPI_NAMESPACE_NODE *NextNode = NULL; in AcpiNsGetNextNodeTyped() local
231 NextNode = AcpiNsGetNextNode (ParentNode, ChildNode); in AcpiNsGetNextNodeTyped()
239 return (NextNode); in AcpiNsGetNextNodeTyped()
244 while (NextNode) in AcpiNsGetNextNodeTyped()
248 if (NextNode->Type == Type) in AcpiNsGetNextNodeTyped()
250 return (NextNode); in AcpiNsGetNextNodeTyped()
255 NextNode = NextNode->Peer; in AcpiNsGetNextNodeTyped()
H A Dnsnames.c374 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsBuildNormalizedPath() local
403 NextNode = Node; in AcpiNsBuildNormalizedPath()
404 while (NextNode && NextNode != AcpiGbl_RootNode) in AcpiNsBuildNormalizedPath()
406 if (NextNode != Node) in AcpiNsBuildNormalizedPath()
411 ACPI_MOVE_32_TO_32 (Name, &NextNode->Name); in AcpiNsBuildNormalizedPath()
426 NextNode = NextNode->Parent; in AcpiNsBuildNormalizedPath()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/sys/contrib/dev/acpica/compiler/
H A Daslprintf.c258 ACPI_PARSE_OBJECT *NextNode; in OpcParsePrintf() local
340 NextNode = ArgNode->Asl.Next; in OpcParsePrintf()
343 ArgNode = NextNode; in OpcParsePrintf()
350 NextNode = ArgNode->Asl.Next; in OpcParsePrintf()
370 ArgNode = NextNode; in OpcParsePrintf()
/freebsd-13.1/sys/contrib/dev/acpica/components/events/
H A Devregion.c986 ACPI_NAMESPACE_NODE *NextNode; in AcpiEvExecuteOrphanRegMethod() local
1019 NextNode = AcpiNsGetNextNode (DeviceNode, NULL); in AcpiEvExecuteOrphanRegMethod()
1020 while (NextNode) in AcpiEvExecuteOrphanRegMethod()
1022 if ((NextNode->Type == ACPI_TYPE_REGION) && in AcpiEvExecuteOrphanRegMethod()
1023 (NextNode->Object) && in AcpiEvExecuteOrphanRegMethod()
1024 (NextNode->Object->Region.SpaceId == SpaceId)) in AcpiEvExecuteOrphanRegMethod()
1029 NextNode = AcpiNsGetNextNode (DeviceNode, NextNode); in AcpiEvExecuteOrphanRegMethod()
/freebsd-13.1/lib/libefivar/
H A Duefi-dputil.c605 EFI_DEVICE_PATH_PROTOCOL *NextNode; in AppendDevicePathNode() local
625 NextNode = NextDevicePathNode (TempDevicePath); in AppendDevicePathNode()
626 SetDevicePathEndNode (NextNode); in AppendDevicePathNode()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTDiagnostic.cpp577 unsigned NextNode = 0; member
758 for (i = Node.ChildNode; FlatTree[i].NextNode != 0; in AddNode()
759 i = FlatTree[i].NextNode) { in AddNode()
761 FlatTree[i].NextNode = NextFreeNode; in AddNode()
897 if (FlatTree[ReadNode].NextNode == 0) in AdvanceSibling()
900 ReadNode = FlatTree[ReadNode].NextNode; in AdvanceSibling()
906 return FlatTree[ReadNode].NextNode != 0; in HasNextSibling()
/freebsd-13.1/contrib/llvm-project/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.h7095 const NestedNameSpecifier *NextNode = Node.getPrefix();
7096 if (!NextNode)
7098 return InnerMatcher.matches(*NextNode, Finder, Builder);
7113 NestedNameSpecifierLoc NextNode = Node.getPrefix();
7114 if (!NextNode)
7116 return InnerMatcher.matches(NextNode, Finder, Builder);
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2770 const ExplodedNode *NextNode = ErrorNode->getFirstPred(); in generateVisitorsDiagnostics() local
2771 while (NextNode) { in generateVisitorsDiagnostics()
2783 const ExplodedNode *Pred = NextNode->getFirstPred(); in generateVisitorsDiagnostics()
2802 auto P = V->VisitNode(NextNode, BRC, *R); in generateVisitorsDiagnostics()
2804 (*Notes)[NextNode].push_back(std::move(P)); in generateVisitorsDiagnostics()
2810 NextNode = Pred; in generateVisitorsDiagnostics()