Home
last modified time | relevance | path

Searched defs:Node (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp153 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED { in VisitStmt()
157 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED { in VisitExpr()
177 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { in PrintRawCompoundStmt()
256 void StmtPrinter::VisitNullStmt(NullStmt *Node) { in VisitNullStmt()
260 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { in VisitDeclStmt()
266 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) { in VisitCompoundStmt()
272 void StmtPrinter::VisitCaseStmt(CaseStmt *Node) { in VisitCaseStmt()
284 void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) { in VisitDefaultStmt()
289 void StmtPrinter::VisitLabelStmt(LabelStmt *Node) { in VisitLabelStmt()
294 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt()
[all …]
H A DTextNodeDumper.cpp126 void TextNodeDumper::Visit(const Stmt *Node) { in Visit()
1239 static void dumpBasePath(raw_ostream &OS, const CastExpr *Node) { in dumpBasePath()
1264 void TextNodeDumper::VisitIfStmt(const IfStmt *Node) { in VisitIfStmt()
1281 void TextNodeDumper::VisitSwitchStmt(const SwitchStmt *Node) { in VisitSwitchStmt()
1288 void TextNodeDumper::VisitWhileStmt(const WhileStmt *Node) { in VisitWhileStmt()
1293 void TextNodeDumper::VisitLabelStmt(const LabelStmt *Node) { in VisitLabelStmt()
1299 void TextNodeDumper::VisitGotoStmt(const GotoStmt *Node) { in VisitGotoStmt()
1304 void TextNodeDumper::VisitCaseStmt(const CaseStmt *Node) { in VisitCaseStmt()
1309 void clang::TextNodeDumper::VisitReturnStmt(const ReturnStmt *Node) { in VisitReturnStmt()
1317 void clang::TextNodeDumper::VisitCoawaitExpr(const CoawaitExpr *Node) { in VisitCoawaitExpr()
[all …]
H A DOpenMPClause.cpp1727 void OMPClausePrinter::VisitOMPIfClause(OMPIfClause *Node) { in VisitOMPIfClause()
1735 void OMPClausePrinter::VisitOMPFinalClause(OMPFinalClause *Node) { in VisitOMPFinalClause()
1741 void OMPClausePrinter::VisitOMPNumThreadsClause(OMPNumThreadsClause *Node) { in VisitOMPNumThreadsClause()
1747 void OMPClausePrinter::VisitOMPAlignClause(OMPAlignClause *Node) { in VisitOMPAlignClause()
1753 void OMPClausePrinter::VisitOMPSafelenClause(OMPSafelenClause *Node) { in VisitOMPSafelenClause()
1759 void OMPClausePrinter::VisitOMPSimdlenClause(OMPSimdlenClause *Node) { in VisitOMPSimdlenClause()
1765 void OMPClausePrinter::VisitOMPSizesClause(OMPSizesClause *Node) { in VisitOMPSizesClause()
1777 void OMPClausePrinter::VisitOMPFullClause(OMPFullClause *Node) { OS << "full"; } in VisitOMPFullClause()
1779 void OMPClausePrinter::VisitOMPPartialClause(OMPPartialClause *Node) { in VisitOMPPartialClause()
1789 void OMPClausePrinter::VisitOMPAllocatorClause(OMPAllocatorClause *Node) { in VisitOMPAllocatorClause()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DAMDGPUMetadataVerifier.cpp50 if (!verifyScalar(Node, msgpac argument
29 verifyScalar(msgpack::DocNode & Node,msgpack::Type SKind,function_ref<bool (msgpack::DocNode &)> verifyValue) verifyScalar() argument
58 verifyArray(msgpack::DocNode & Node,function_ref<bool (msgpack::DocNode &)> verifyNode,std::optional<size_t> Size) verifyArray() argument
81 __anon626506680102(msgpack::DocNode &Node) verifyScalarEntry() argument
88 __anon626506680202(msgpack::DocNode &Node) verifyIntegerEntry() argument
93 verifyKernelArgs(msgpack::DocNode & Node) verifyKernelArgs() argument
195 verifyKernel(msgpack::DocNode & Node) verifyKernel() argument
220 __anon626506680802(msgpack::DocNode &Node) verifyKernel() argument
223 __anon626506680902(msgpack::DocNode &Node) verifyKernel() argument
226 __anon626506680a02(msgpack::DocNode &Node) verifyKernel() argument
227 __anon626506680b02(msgpack::DocNode &Node) verifyKernel() argument
233 __anon626506680c02(msgpack::DocNode &Node) verifyKernel() argument
235 __anon626506680d02(msgpack::DocNode &Node) verifyKernel() argument
242 __anon626506680e02(msgpack::DocNode &Node) verifyKernel() argument
244 __anon626506680f02(msgpack::DocNode &Node) verifyKernel() argument
294 __anon626506681002(msgpack::DocNode &Node) verify() argument
297 __anon626506681102(msgpack::DocNode &Node) verify() argument
301 __anon626506681202(msgpack::DocNode &Node) verify() argument
302 __anon626506681302(msgpack::DocNode &Node) verify() argument
308 __anon626506681402(msgpack::DocNode &Node) verify() argument
309 __anon626506681502(msgpack::DocNode &Node) verify() argument
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h38 struct Node { struct
39 NodeId Parent, LeftMostDescendant, RightMostDescendant; argument
41 DynTypedNode ASTNode; argument
42 SmallVector<NodeId, 4> Children; argument
60 SyntaxTree(T *Node, ASTContext &AST) in SyntaxTree()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSpillPlacement.cpp72 struct SpillPlacement::Node { struct in SpillPlacement
74 BlockFrequency BiasN;
77 BlockFrequency BiasP;
82 int Value;
84 using LinkVector = SmallVector<std::pair<BlockFrequency, unsigned>, 4>;
88 LinkVector Links;
91 BlockFrequency SumLinkWeights;
94 bool preferReg() const { in preferReg()
100 bool mustSpill() const { in mustSpill()
109 void clear(BlockFrequency Threshold) { in clear()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DPostfixExpression.cpp118 bool Visit(BinaryOpNode &binary, Node *&) override { in Visit() argument
122 bool Visit(InitialValueNode &, Node *&) override { return true; } in Visit() argument
123 bool Visit(IntegerNode &, Node *&) override { return true; } in Visit() argument
124 bool Visit(RegisterNode &, Node *&) override { return true; } in Visit() argument
136 bool Visit(UnaryOpNode &unary, Node *&) override { in Visit() argument
154 void Visit(IntegerNode &integer, Node *&) override { in Visit() argument
162 void Visit(SymbolNode &symbol, Node *&) override { in Visit() argument
181 void DWARFCodegen::Visit(BinaryOpNode &binary, Node *&) { in Visit() argument
208 void DWARFCodegen::Visit(InitialValueNode &, Node *&) { in Visit() argument
217 void DWARFCodegen::Visit(RegisterNode &reg, Node *&) { in Visit() argument
[all …]
/freebsd/lib/libefivar/
H A Duefi-dputil.c212 IN CONST VOID *Node in DevicePathType()
235 IN CONST VOID *Node in DevicePathSubType()
260 IN CONST VOID *Node in DevicePathNodeLength()
285 IN CONST VOID *Node in NextDevicePathNode()
315 IN CONST VOID *Node in IsDevicePathEndType()
342 IN CONST VOID *Node in IsDevicePathEnd()
368 OUT VOID *Node in SetDevicePathEndNode()
396 IN OUT VOID *Node, in SetDevicePathNodeLength()
/freebsd/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsargs.c190 ACPI_NAMESPACE_NODE *Node, in AcpiDsExecuteArguments()
308 ACPI_NAMESPACE_NODE *Node; in AcpiDsGetBufferFieldArguments() local
357 ACPI_NAMESPACE_NODE *Node; in AcpiDsGetBankFieldArguments() local
405 ACPI_NAMESPACE_NODE *Node; in AcpiDsGetBufferArguments() local
455 ACPI_NAMESPACE_NODE *Node; in AcpiDsGetPackageArguments() local
506 ACPI_NAMESPACE_NODE *Node; in AcpiDsGetRegionArguments() local
H A Ddsmthdat.c387 ACPI_NAMESPACE_NODE **Node) in AcpiDsMethodDataGetNode()
462 ACPI_NAMESPACE_NODE *Node; in AcpiDsMethodDataSetValue() local
521 ACPI_NAMESPACE_NODE *Node; in AcpiDsMethodDataGetValue() local
633 ACPI_NAMESPACE_NODE *Node; in AcpiDsMethodDataDeleteValue() local
700 ACPI_NAMESPACE_NODE *Node; in AcpiDsStoreObjectToLocal() local
857 ACPI_NAMESPACE_NODE *Node; in AcpiDsMethodDataGetType() local
/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsobject.c185 ACPI_NAMESPACE_NODE *Node, in AcpiNsAttachObject()
329 ACPI_NAMESPACE_NODE *Node) in AcpiNsDetachObject()
417 ACPI_NAMESPACE_NODE *Node) in AcpiNsGetAttachedObject()
488 ACPI_NAMESPACE_NODE *Node, in AcpiNsAttachData()
555 ACPI_NAMESPACE_NODE *Node, in AcpiNsDetachData()
607 ACPI_NAMESPACE_NODE *Node, in AcpiNsGetAttachedData()
H A Dnsnames.c179 ACPI_NAMESPACE_NODE *Node) in AcpiNsGetExternalPathname()
206 ACPI_NAMESPACE_NODE *Node) in AcpiNsGetPathnameLength()
246 ACPI_NAMESPACE_NODE *Node; in AcpiNsHandleToName() local
301 ACPI_NAMESPACE_NODE *Node; in AcpiNsHandleToPathname() local
365 ACPI_NAMESPACE_NODE *Node, in AcpiNsBuildNormalizedPath()
476 ACPI_NAMESPACE_NODE *Node, in AcpiNsGetNormalizedPathname()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DMarkupFilter.cpp53 while (std::optional<MarkupNode> Node = Parser.nextNode()) { in filter() local
63 for (const MarkupNode &Node : DeferredNodes) in filter() local
69 while (std::optional<MarkupNode> Node = Parser.nextNode()) in finish() local
86 const MarkupNode &Node, const SmallVector<MarkupNode> &DeferredNodes) { in tryContextualElement() argument
94 tryMMap(const MarkupNode & Node,const SmallVector<MarkupNode> & DeferredNodes) tryMMap() argument
116 for (const MarkupNode &Node : DeferredNodes) tryMMap() local
125 tryReset(const MarkupNode & Node,const SmallVector<MarkupNode> & DeferredNodes) tryReset() argument
134 for (const MarkupNode &Node : DeferredNodes) tryReset() local
145 tryModule(const MarkupNode & Node,const SmallVector<MarkupNode> & DeferredNodes) tryModule() argument
163 for (const MarkupNode &Node : DeferredNodes) tryModule() local
203 filterNode(const MarkupNode & Node) filterNode() argument
214 tryPresentation(const MarkupNode & Node) tryPresentation() argument
224 trySymbol(const MarkupNode & Node) trySymbol() argument
236 tryPC(const MarkupNode & Node) tryPC() argument
289 tryBackTrace(const MarkupNode & Node) tryBackTrace() argument
369 tryData(const MarkupNode & Node) tryData() argument
400 trySGR(const MarkupNode & Node) trySGR() argument
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclContextInternals.h59 if (auto *Node = List.dyn_cast<DeclListNode*>()) { in erase_if() local
73 DeclListNode *Node = NewLast->get<DeclListNode*>(); in erase_if() local
199 DeclListNode *Node = C.AllocateDeclListNode(Decls[I - 1]); in replaceExternalDecls() local
210 DeclListNode *Node = C.AllocateDeclListNode(Tail->get<NamedDecl *>()); in replaceExternalDecls() local
239 DeclListNode *Node = C.AllocateDeclListNode(OldD); in addOrReplaceDecl() local
263 DeclListNode *Node = C.AllocateDeclListNode(ND); in addOrReplaceDecl() local
279 DeclListNode *Node = C.AllocateDeclListNode(D); in prependDeclNoReplace() local
292 if (auto *Node = D.dyn_cast<DeclListNode*>()) { in dump() local
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAllocatorList.h34 struct Node : ilist_node<Node> { struct
37 Node &operator=(Node &&) = delete; argument
38 Node &operator=(const Node &) = delete; argument
40 Node(T &&V) : V(std::move(V)) {} in Node() argument
41 Node(const T &V) : V(V) {} in Node() function
42 template <class... Ts> Node(Ts &&... Vs) : V(std::forward<Ts>(Vs)...) {} in Node() function
46 using list_type = simple_ilist<Node>; argument
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp273 SDNode *Node = DAG.UpdateNodeOperands(Op.getNode(), Ops); in LegalizeOp() local
569 bool VectorLegalizer::LowerOperationWrapper(SDNode *Node, in LowerOperationWrapper()
598 void VectorLegalizer::PromoteSETCC(SDNode *Node, in PromoteSETCC()
623 void VectorLegalizer::PromoteSTRICT(SDNode *Node, in PromoteSTRICT()
664 void VectorLegalizer::Promote(SDNode *Node, SmallVectorImpl<SDValue> &Results) { in Promote()
745 void VectorLegalizer::PromoteINT_TO_FP(SDNode *Node, in PromoteINT_TO_FP()
786 void VectorLegalizer::PromoteFP_TO_INT(SDNode *Node, in PromoteFP_TO_INT()
842 void VectorLegalizer::Expand(SDNode *Node, SmallVectorImpl<SDValue> &Results) { in Expand()
1143 SDValue VectorLegalizer::ExpandSELECT(SDNode *Node) { in ExpandSELECT()
1199 SDValue VectorLegalizer::ExpandSEXTINREG(SDNode *Node) { in ExpandSEXTINREG()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp80 pred_iterator_ty pred_begin(change_ty Node) { in pred_begin()
84 pred_iterator_ty pred_end(change_ty Node) { in pred_end()
89 pred_closure_iterator_ty pred_closure_begin(change_ty Node) { in pred_closure_begin()
93 pred_closure_iterator_ty pred_closure_end(change_ty Node) { in pred_closure_end()
98 succ_iterator_ty succ_begin(change_ty Node) { in succ_begin()
102 succ_iterator_ty succ_end(change_ty Node) { in succ_end()
107 succ_closure_iterator_ty succ_closure_begin(change_ty Node) { in succ_closure_begin()
111 succ_closure_iterator_ty succ_closure_end(change_ty Node) { in succ_closure_end()
H A DUnicodeNameToCodepoint.cpp31 struct Node { struct
38 const Node *Parent = nullptr; argument
32 IsRootllvm::sys::unicode::Node global() argument
33 Valuellvm::sys::unicode::Node global() argument
34 ChildrenOffsetllvm::sys::unicode::Node global() argument
35 HasSiblingllvm::sys::unicode::Node global() argument
36 Sizellvm::sys::unicode::Node global() argument
37 Namellvm::sys::unicode::Node global() argument
40 isValidllvm::sys::unicode::Node isValid() argument
43 hasChildrenllvm::sys::unicode::Node hasChildren() argument
45 fullNamellvm::sys::unicode::Node fullName() argument
385 Node Node; nameToCodepoint() local
432 __anonef2277cc0302(const Node &Node, uint32_t Distance, char32_t Value) nearestMatchesForCodepointName() argument
[all...]
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbobject.c190 ACPI_NAMESPACE_NODE *Node; in AcpiDbDumpMethodInfo() local
326 ACPI_NAMESPACE_NODE *Node) in AcpiDbDecodeNode()
565 ACPI_NAMESPACE_NODE *Node; in AcpiDbDecodeLocals() local
647 ACPI_NAMESPACE_NODE *Node; in AcpiDbDecodeArguments() local
/freebsd/sys/contrib/dev/acpica/components/resources/
H A Drsxface.c215 ACPI_NAMESPACE_NODE *Node; in AcpiRsValidateParameters() local
287 ACPI_NAMESPACE_NODE *Node; in AcpiGetIrqRoutingTable() local
338 ACPI_NAMESPACE_NODE *Node; in ACPI_EXPORT_SYMBOL() local
386 ACPI_NAMESPACE_NODE *Node; in ACPI_EXPORT_SYMBOL() local
431 ACPI_NAMESPACE_NODE *Node; in ACPI_EXPORT_SYMBOL() local
486 ACPI_NAMESPACE_NODE *Node; in ACPI_EXPORT_SYMBOL() local
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDominanceFrontierImpl.h44 const DomTreeNodeT *Node; variable
58 BlockT *Node) { in addToFrontier() argument
66 removeFromFrontier(iterator I,BlockT * Node) removeFromFrontier() argument
81 BlockT *Node = *I++; compareDomSet() local
109 BlockT *Node = I->first; compare() local
160 calculate(const DomTreeT & DT,const DomTreeNodeT * Node) calculate() argument
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp38 yaml::Stream &Stream, yaml::Node &Node) { in YAMLParseError() argument
178 error(StringRef Message,yaml::Node & Node) error() argument
273 parseType(yaml::MappingNode & Node) parseType() argument
287 parseKey(yaml::KeyValueNode & Node) parseKey() argument
294 parseStr(yaml::KeyValueNode & Node) parseStr() argument
316 parseUnsigned(yaml::KeyValueNode & Node) parseUnsigned() argument
328 parseDebugLoc(yaml::KeyValueNode & Node) parseDebugLoc() argument
370 parseArg(yaml::Node & Node) parseArg() argument
437 parseStr(yaml::KeyValueNode & Node) parseStr() argument
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDDGPrinter.cpp59 std::string DDGDotGraphTraits::getNodeLabel(const DDGNode *Node, in getNodeLabel()
68 const DDGNode *Node, GraphTraits<const DDGNode *>::ChildIteratorType I, in getEdgeAttributes()
77 bool DDGDotGraphTraits::isNodeHidden(const DDGNode *Node, in isNodeHidden()
86 DDGDotGraphTraits::getSimpleNodeLabel(const DDGNode *Node, in getSimpleNodeLabel()
104 DDGDotGraphTraits::getVerboseNodeLabel(const DDGNode *Node, in getVerboseNodeLabel()
/freebsd/contrib/ofed/infiniband-diags/src/
H A Dibtracert.c76 typedef struct Node Node; typedef
100 struct Node { struct
101 Node *htnext; argument
102 Node *dnext; argument
109 Node *upnode; argument
115 Node *nodesdist[MAXHOPS]; argument
/freebsd/contrib/llvm-project/llvm/lib/WindowsManifest/
H A DWindowsManifestMerger.cpp96 static xmlAttrPtr getAttribute(xmlNodePtr Node, in getAttribute()
124 static xmlNsPtr search(const unsigned char *HRef, xmlNodePtr Node) { in search()
152 xmlNodePtr Node) { in searchOrDefine()
177 xmlNodePtr Node) { in getNamespaceWithPrefix()
191 static xmlNsPtr getClosestDefault(xmlNodePtr Node) { in getClosestDefault()
288 static bool hasInheritedNs(xmlNodePtr Node) { in hasInheritedNs()
294 static bool hasInheritedDefaultNs(xmlNodePtr Node) { in hasInheritedDefaultNs()
299 static bool hasDefinedDefaultNamespace(xmlNodePtr Node) { in hasDefinedDefaultNamespace()
308 static void explicateNamespace(xmlNsPtr PrefixDef, xmlNodePtr Node) { in explicateNamespace()
480 static bool hasRecognizedNamespace(xmlNodePtr Node) { in hasRecognizedNamespace()
[all …]

12345678910>>...15