Searched refs:Parent (Results 276 - 300 of 394) sorted by relevance

<<111213141516

/freebsd-current/sys/contrib/dev/acpica/compiler/
H A Ddtcompiler.h230 struct dt_subtable *Parent; member in struct:dt_subtable
H A Ddtio.c1078 Subtable->Parent, Subtable->Child, Subtable->Peer);
1122 "This Parent Child Peer\n\n");
/freebsd-current/sys/contrib/dev/acpica/common/
H A Dadisasm.c648 AcpiGbl_RootNodeStruct.Parent = NULL;
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc331 // Parent process: Break out of the switch to do our processing.
416 // Parent process: Wait for the child process to terminate.
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp400 auto *Parent = MethodDecl->getParent(); local
401 assert(Parent != nullptr);
403 if (Parent->isLambda()) {
404 for (auto Capture : Parent->captures()) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DDominators.h169 recalculate(*DT.Parent, U);
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineLICM.cpp719 MachineDomTreeNode *Parent = ParentMap.lookup(Node); local
720 if (!Parent || --OpenChildren[Parent] != 0)
722 Node = Parent;
H A DReachingDefAnalysis.cpp445 MachineBasicBlock *Parent = MI->getParent(); local
446 for (auto *Pred : Parent->predecessors())
452 if (Incoming.size() == 1 && (*Incoming.begin())->getParent() != Parent)
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h121 MachineBasicBlock *Parent = nullptr; // Pointer to the owning basic block. member in class:llvm::MachineInstr
293 void setParent(MachineBasicBlock *P) { Parent = P; }
326 const MachineBasicBlock* getParent() const { return Parent; }
327 MachineBasicBlock* getParent() { return Parent; }
H A DSelectionDAGISel.h425 virtual bool CheckComplexPattern(SDNode *Root, SDNode *Parent, SDValue N, argument
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp427 P.formatLine("parent = {0}, end = {1}", Block.Parent, Block.End);
436 P.formatLine("parent = {0}, end = {1}, next = {2}", Thunk.Parent, Thunk.End,
710 IS.Parent, IS.End);
852 Proc.Parent, Proc.End,
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp867 std::function<void(LVScope * Parent)> FindInlinedScopes =
868 [&](LVScope *Parent) {
869 if (const LVScopes *Scopes = Parent->getScopes())
/freebsd-current/sys/contrib/dev/acpica/include/
H A Daclocal.h300 struct acpi_namespace_node *Parent; /* Parent node */ member in struct:acpi_namespace_node
1034 union acpi_parse_object *Parent; /* Parent op */\
1056 char *CvParentFilename) /* Parent filename associated with this node. Used for ASL/ASL+ converter */
1087 #define ACPI_DASM_MATCHOP 0x07 /* Parent opcode is a Match() operator */
1126 struct acpi_file_node *Parent; member in struct:acpi_file_node
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DType.cpp446 #define ABSTRACT_TYPE(Class, Parent)
447 #define TYPE(Class, Parent) \
465 #define ABSTRACT_TYPE(Class, Parent)
466 #define TYPE(Class, Parent) \
494 #define ABSTRACT_TYPE(Class, Parent)
495 #define TYPE(Class, Parent) \
533 #define ABSTRACT_TYPE(Class, Parent)
534 #define TYPE(Class, Parent) \
570 #define ABSTRACT_TYPE(Class, Parent)
571 #define TYPE(Class, Parent) \
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp578 for (Module *ModCheck = Mod; ModCheck; ModCheck = ModCheck->Parent)
580 } else if (getLangOpts().CPlusPlusModules && !Mod->Parent) {
590 ModCheck = ModCheck->Parent;
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp144 "Parent function doesn't have the same debug-info format");
223 IsNewDbgInfoFormat(false), Parent(nullptr) {
238 assert(!Parent && "Already has a parent");
280 // Set Parent=parent, updating instruction symtab entries as appropriate.
281 InstList.setSymTabObject(&Parent, parent);
H A DDIBuilder.cpp221 DIMacro *DIBuilder::createMacro(DIMacroFile *Parent, unsigned LineNumber, argument
229 AllMacrosPerParent[Parent].insert(M);
233 DIMacroFile *DIBuilder::createTempMacroFile(DIMacroFile *Parent, argument
238 AllMacrosPerParent[Parent].insert(MF);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp292 BasicBlock *Parent = DT.getNode(Node)->getIDom()->getBlock(); local
295 auto &ParentInsertPts = InsertPtsMap[Parent].first;
296 BlockFrequency &ParentPtsFreq = InsertPtsMap[Parent].second;
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopConstrainer.cpp698 Loop *LoopConstrainer::createClonedLoopStructure(Loop *Original, Loop *Parent, argument
702 if (Parent)
703 Parent->addChildLoop(&New);
/freebsd-current/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp1123 for (const auto &Parent : ActiveASTContext->getParents(Node)) {
1125 if (Matcher.matches(Parent, this, &BuilderCopy)) {
1219 llvm_unreachable("Parent map should be complete!");
1235 for (const auto &Parent : ActiveASTContext->getParents(Queue.front())) {
1239 if (Visited.insert(Parent.getMemoizationData()).second)
1240 Queue.push_back(Parent);
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp983 StringRef Parent = path::parent_path(P);
984 if (Parent.empty())
987 if ((EC = create_directories(Parent, IgnoreExisting, Perms)))
/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_profile_collector.cpp187 for (auto N = Node; N != nullptr; N = N->Parent)
/freebsd-current/sys/contrib/dev/acpica/components/dispatcher/
H A Ddswstate.c850 ExtraOp = ExtraOp->Common.Parent;
/freebsd-current/sys/contrib/dev/acpica/components/events/
H A Devregion.c756 Node = RegionObj->Region.Node->Parent;
/freebsd-current/sys/contrib/dev/acpica/components/disassembler/
H A Ddmcstyle.c574 switch (Op->Common.Parent->Common.AmlOpcode)

Completed in 193 milliseconds

<<111213141516