Searched refs:NextNode (Results 1 – 10 of 10) sorted by relevance
| /trueos/sys/contrib/dev/acpica/components/namespace/ |
| HD | nsalloc.c | 188 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsRemoveNode() local 197 NextNode = ParentNode->Child; in AcpiNsRemoveNode() 201 while (NextNode != Node) in AcpiNsRemoveNode() 203 PrevNode = NextNode; in AcpiNsRemoveNode() 204 NextNode = NextNode->Peer; in AcpiNsRemoveNode() 338 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsDeleteChildren() local 352 NextNode = ParentNode->Child; in AcpiNsDeleteChildren() 353 while (NextNode) in AcpiNsDeleteChildren() 357 if (NextNode->Child) in AcpiNsDeleteChildren() 360 ParentNode, NextNode)); in AcpiNsDeleteChildren() [all …]
|
| HD | 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()
|
| HD | nsnames.c | 204 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsGetPathnameLength() local 215 NextNode = Node; in AcpiNsGetPathnameLength() 217 while (NextNode && (NextNode != AcpiGbl_RootNode)) in AcpiNsGetPathnameLength() 219 if (ACPI_GET_DESCRIPTOR_TYPE (NextNode) != ACPI_DESC_TYPE_NAMED) in AcpiNsGetPathnameLength() 223 NextNode)); in AcpiNsGetPathnameLength() 227 NextNode = NextNode->Parent; in AcpiNsGetPathnameLength()
|
| /trueos/sys/contrib/dev/acpica/components/events/ |
| HD | evregion.c | 786 ACPI_NAMESPACE_NODE *NextNode; in AcpiEvOrphanEcRegMethod() local 819 NextNode = AcpiNsGetNextNode (EcDeviceNode, NULL); in AcpiEvOrphanEcRegMethod() 820 while (NextNode) in AcpiEvOrphanEcRegMethod() 822 if ((NextNode->Type == ACPI_TYPE_REGION) && in AcpiEvOrphanEcRegMethod() 823 (NextNode->Object) && in AcpiEvOrphanEcRegMethod() 824 (NextNode->Object->Region.SpaceId == ACPI_ADR_SPACE_EC)) in AcpiEvOrphanEcRegMethod() 829 NextNode = AcpiNsGetNextNode (EcDeviceNode, NextNode); in AcpiEvOrphanEcRegMethod()
|
| /trueos/sys/contrib/dev/acpica/compiler/ |
| HD | 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()
|
| /trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| HD | BugReporter.cpp | 566 const ExplodedNode *NextNode = N->pred_empty() in GenerateMinimalPathDiagnostic() local 571 while (NextNode) { in GenerateMinimalPathDiagnostic() 572 N = NextNode; in GenerateMinimalPathDiagnostic() 574 NextNode = N->getFirstPred(); in GenerateMinimalPathDiagnostic() 869 if (NextNode) { in GenerateMinimalPathDiagnostic() 875 if (PathDiagnosticPiece *p = (*I)->VisitNode(N, NextNode, PDB, *R)) { in GenerateMinimalPathDiagnostic() 1404 const ExplodedNode *NextNode = N->pred_empty() ? NULL : *(N->pred_begin()); in GenerateExtensivePathDiagnostic() local 1405 while (NextNode) { in GenerateExtensivePathDiagnostic() 1406 N = NextNode; in GenerateExtensivePathDiagnostic() 1407 NextNode = N->getFirstPred(); in GenerateExtensivePathDiagnostic() [all …]
|
| /trueos/contrib/llvm/include/llvm/ADT/ |
| HD | ilist.h | 438 NodeTy *NextNode = this->getNext(Node); 442 this->setNext(PrevNode, NextNode); 444 Head = NextNode; 445 this->setPrev(NextNode, PrevNode); 446 IT = NextNode;
|
| /trueos/contrib/llvm/tools/clang/lib/AST/ |
| HD | ASTDiagnostic.cpp | 431 unsigned NextNode; member 472 : Kind(Invalid), NextNode(0), ChildNode(0), ParentNode(ParentNode), in DiffNode() 574 for (i = Node.ChildNode; FlatTree[i].NextNode != 0; in AddNode() 575 i = FlatTree[i].NextNode) { in AddNode() 577 FlatTree[i].NextNode = NextFreeNode; in AddNode() 656 if (FlatTree[ReadNode].NextNode == 0) in AdvanceSibling() 659 ReadNode = FlatTree[ReadNode].NextNode; in AdvanceSibling() 665 return FlatTree[ReadNode].NextNode != 0; in HasNextSibling()
|
| /trueos/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| HD | ASTMatchers.h | 3361 NestedNameSpecifier *NextNode = Node.getPrefix(); 3362 if (NextNode == NULL) 3364 return InnerMatcher.matches(*NextNode, Finder, Builder); 3379 NestedNameSpecifierLoc NextNode = Node.getPrefix(); 3380 if (!NextNode) 3382 return InnerMatcher.matches(NextNode, Finder, Builder);
|
| HD | ASTMatchersInternal.h | 1531 QualType NextNode = (Node.*TraverseFunction)(); 1532 if (NextNode.isNull()) 1534 return InnerMatcher.matches(NextNode, Finder, Builder); 1555 TypeLoc NextNode = (Node.*TraverseFunction)(); 1556 if (!NextNode) 1558 return InnerMatcher.matches(NextNode, Finder, Builder);
|