| /freebsd-13.1/sys/contrib/dev/acpica/components/namespace/ |
| H A D | nsalloc.c | 301 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 D | nswalk.c | 225 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 D | nsnames.c | 374 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 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()
|
| /freebsd-13.1/sys/contrib/dev/acpica/compiler/ |
| H A D | aslprintf.c | 258 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 D | evregion.c | 986 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 D | uefi-dputil.c | 605 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 D | ASTDiagnostic.cpp | 577 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 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 | 7095 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 D | BugReporter.cpp | 2770 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()
|