/netbsd-src/external/gpl2/groff/dist/doc/ |
H A D | groff | 33 Node: Top1019 34 Node: Introduction2325 35 Node: What Is groff?2800 36 Node: What Is groff?-Footnotes4312 38 Node: History4418 39 Node: groff Capabilities9373 40 Node: Macro Package Intro10564 41 Node: Preprocessor Intro11192 42 Node: Output device intro12694 43 Node: Credits13164 [all …]
|
/netbsd-src/external/lgpl3/gmp/dist/doc/ |
H A D | gmp.info | 27 Node: Top863 28 Node: Copying2941 29 Node: Introduction to GMP5288 30 Node: Installing GMP8004 31 Node: Build Options8736 32 Node: ABI and ISA24445 33 Node: Notes for Package Builds34286 34 Node: Notes for Particular Systems37373 35 Node: Known Build Problems45124 36 Node: Performance optimization48656 [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | StmtPrinter.cpp | 150 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED { in VisitStmt() argument 154 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED { in VisitExpr() argument 158 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node); 162 void Visit##CLASS(CLASS *Node); 174 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { in PrintRawCompoundStmt() argument 176 for (auto *I : Node->body()) in PrintRawCompoundStmt() 191 void StmtPrinter::VisitNullStmt(NullStmt *Node) { in VisitNullStmt() argument 195 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { in VisitDeclStmt() argument 197 PrintRawDeclStmt(Node); in VisitDeclStmt() 201 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) { in VisitCompoundStmt() argument [all …]
|
H A D | TextNodeDumper.cpp | 123 void TextNodeDumper::Visit(const Stmt *Node) { in Visit() argument 124 if (!Node) { in Visit() 131 OS << Node->getStmtClassName(); in Visit() 133 dumpPointer(Node); in Visit() 134 dumpSourceRange(Node->getSourceRange()); in Visit() 136 if (const auto *E = dyn_cast<Expr>(Node)) { in Visit() 182 ConstStmtVisitor<TextNodeDumper>::Visit(Node); in Visit() 878 static void dumpBasePath(raw_ostream &OS, const CastExpr *Node) { in dumpBasePath() argument 879 if (Node->path_empty()) in dumpBasePath() 884 for (CastExpr::path_const_iterator I = Node->path_begin(), in dumpBasePath() [all …]
|
/netbsd-src/external/bsd/flex/dist/doc/ |
H A D | flex.info | 50 Node: Top1622 51 Node: Copyright9414 52 Node: Reporting Bugs10933 53 Node: Introduction11189 54 Node: Simple Examples12018 55 Node: Format15304 56 Node: Definitions Section15759 58 Node: Rules Section18085 59 Node: User Code Section19243 60 Node: Comments in the Input19681 [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeVectorOps.cpp | 91 SDValue UnrollVSETCC(SDNode *Node); 97 void Expand(SDNode *Node, SmallVectorImpl<SDValue> &Results); 101 void ExpandFP_TO_UINT(SDNode *Node, SmallVectorImpl<SDValue> &Results); 105 void ExpandUINT_TO_FLOAT(SDNode *Node, SmallVectorImpl<SDValue> &Results); 108 SDValue ExpandSEXTINREG(SDNode *Node); 115 SDValue ExpandANY_EXTEND_VECTOR_INREG(SDNode *Node); 122 SDValue ExpandSIGN_EXTEND_VECTOR_INREG(SDNode *Node); 128 SDValue ExpandZERO_EXTEND_VECTOR_INREG(SDNode *Node); 131 SDValue ExpandBSWAP(SDNode *Node); 135 SDValue ExpandVSELECT(SDNode *Node); [all …]
|
H A D | LegalizeDAG.cpp | 111 void LegalizeOp(SDNode *Node); 116 void LegalizeLoadOps(SDNode *Node); 117 void LegalizeStoreOps(SDNode *Node); 136 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned); 138 void ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32, 143 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned, 149 void ExpandArgFPLibCall(SDNode *Node, 154 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results); 155 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results); 161 SDValue ExpandBUILD_VECTOR(SDNode *Node); [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/ |
H A D | AMDGPUMetadataVerifier.cpp | 24 msgpack::DocNode &Node, msgpack::Type SKind, in verifyScalar() argument 26 if (!Node.isScalar()) in verifyScalar() 28 if (Node.getKind() != SKind) { in verifyScalar() 33 if (Node.getKind() != msgpack::Type::String) in verifyScalar() 35 StringRef StringValue = Node.getString(); in verifyScalar() 36 Node.fromString(StringValue); in verifyScalar() 37 if (Node.getKind() != SKind) in verifyScalar() 41 return verifyValue(Node); in verifyScalar() 45 bool MetadataVerifier::verifyInteger(msgpack::DocNode &Node) { in verifyInteger() argument 46 if (!verifyScalar(Node, msgpack::Type::UInt)) in verifyInteger() [all …]
|
H A D | MsgPackDocument.cpp | 106 StackLevel(DocNode Node, size_t StartIndex, size_t Length, in StackLevel() 108 : Node(Node), Index(StartIndex), End(StartIndex + Length), in StackLevel() 110 DocNode Node; member 150 DocNode Node; in readFromBlob() local 153 Node = getNode(); in readFromBlob() 156 Node = getNode(Obj.Int); in readFromBlob() 159 Node = getNode(Obj.UInt); in readFromBlob() 162 Node = getNode(Obj.Bool); in readFromBlob() 165 Node = getNode(Obj.Float); in readFromBlob() 168 Node = getNode(Obj.Raw); in readFromBlob() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/ |
H A D | ItaniumDemangle.h | 114 class Node { 144 Node(Kind K_, Cache RHSComponentCache_ = Cache::No, 184 virtual const Node *getSyntaxNode(OutputStream &) const { in getSyntaxNode() 206 virtual ~Node() = default; 214 Node **Elements; 219 NodeArray(Node **Elements_, size_t NumElements_) in NodeArray() 225 Node **begin() const { return Elements; } in begin() 226 Node **end() const { return Elements + NumElements; } in end() 228 Node *operator[](size_t Idx) const { return Elements[Idx]; } 251 struct NodeArrayNode : Node { [all …]
|
/netbsd-src/sys/external/bsd/acpica/dist/namespace/ |
H A D | nsobject.c | 77 ACPI_NAMESPACE_NODE *Node, in AcpiNsAttachObject() argument 92 if (!Node) in AcpiNsAttachObject() 109 if (ACPI_GET_DESCRIPTOR_TYPE (Node) != ACPI_DESC_TYPE_NAMED) in AcpiNsAttachObject() 114 Node, AcpiUtGetDescriptorName (Node))); in AcpiNsAttachObject() 120 if (Node->Object == Object) in AcpiNsAttachObject() 124 Object, Node)); in AcpiNsAttachObject() 166 ObjDesc, Node, AcpiUtGetNodeName (Node))); in AcpiNsAttachObject() 170 if (Node->Object) in AcpiNsAttachObject() 172 AcpiNsDetachObject (Node); in AcpiNsAttachObject() 195 LastObjDesc->Common.NextObject = Node->Object; in AcpiNsAttachObject() [all …]
|
H A D | nsalloc.c | 69 ACPI_NAMESPACE_NODE *Node; in AcpiNsCreateNode() local 78 Node = AcpiOsAcquireObject (AcpiGbl_NamespaceCache); in AcpiNsCreateNode() 79 if (!Node) in AcpiNsCreateNode() 95 Node->Name.Integer = Name; in AcpiNsCreateNode() 96 ACPI_SET_DESCRIPTOR_TYPE (Node, ACPI_DESC_TYPE_NAMED); in AcpiNsCreateNode() 97 return_PTR (Node); in AcpiNsCreateNode() 118 ACPI_NAMESPACE_NODE *Node) in AcpiNsDeleteNode() argument 127 if (!Node) in AcpiNsDeleteNode() 134 AcpiNsDetachObject (Node); in AcpiNsDeleteNode() 142 ObjDesc = Node->Object; in AcpiNsDeleteNode() [all …]
|
/netbsd-src/external/gpl2/texinfo/dist/util/ |
H A D | prepinfo.awk | 126 Node[Name ".level"] = levelnum 127 Node[Name ".name"] = Name 129 printf("Node[%s\".level\"] = %s\n", Name, Node[Name ".level"]) > "/dev/stderr" 130 printf("Node[%s\".name\"] = %s\n", Name, Node[Name ".name"]) > "/dev/stderr" 134 Node[Name ".up"] = Up[levelnum - 1] 136 Node[Prev[levelnum] ".next"] = Name 137 Node[Name ".prev"] = Prev[levelnum] 143 Node[Name ".up"] = Up[levelnum - 1] 145 Node[Name ".prev"] = Prev[levelnum] 146 Node[Prev[levelnum] ".next"] = Name [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/ |
H A D | Tree.h | 80 class Node { 84 Node(NodeKind Kind); 86 ~Node() = default; 90 Node(const Node &) = delete; 91 Node &operator=(const Node &) = delete; 93 Node(Node &&) = delete; 94 Node &operator=(Node &&) = delete; 119 const Node *getNextSibling() const { return NextSibling; } in getNextSibling() 120 Node *getNextSibling() { return NextSibling; } in getNextSibling() 121 const Node *getPreviousSibling() const { return PreviousSibling; } in getPreviousSibling() [all …]
|
/netbsd-src/sys/external/bsd/acpica/dist/dispatcher/ |
H A D | dsargs.c | 59 ACPI_NAMESPACE_NODE *Node, 82 ACPI_NAMESPACE_NODE *Node, in AcpiDsExecuteArguments() argument 105 Op->Common.Node = ScopeNode; in AcpiDsExecuteArguments() 127 WalkState->DeferredNode = Node; in AcpiDsExecuteArguments() 139 Op->Common.Node = Node; in AcpiDsExecuteArguments() 150 Op->Common.Node = ScopeNode; in AcpiDsExecuteArguments() 173 WalkState->DeferredNode = Node; in AcpiDsExecuteArguments() 200 ACPI_NAMESPACE_NODE *Node; in AcpiDsGetBufferFieldArguments() local 215 Node = ObjDesc->BufferField.Node; in AcpiDsGetBufferFieldArguments() 218 ACPI_TYPE_BUFFER_FIELD, Node, NULL)); in AcpiDsGetBufferFieldArguments() [all …]
|
H A D | dswload2.c | 79 ACPI_NAMESPACE_NODE *Node; in AcpiDsLoad2BeginOp() local 154 Node = NULL; in AcpiDsLoad2BeginOp() 166 WalkState, &(Node)); in AcpiDsLoad2BeginOp() 173 if (Op && (Op->Named.Node == AcpiGbl_RootNode)) in AcpiDsLoad2BeginOp() 175 Node = Op->Named.Node; in AcpiDsLoad2BeginOp() 177 Status = AcpiDsScopeStackPush (Node, ObjectType, WalkState); in AcpiDsLoad2BeginOp() 192 WalkState, &(Node)); in AcpiDsLoad2BeginOp() 217 switch (Node->Type) in AcpiDsLoad2BeginOp() 243 AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Node->Type))); in AcpiDsLoad2BeginOp() 245 Node->Type = ACPI_TYPE_ANY; in AcpiDsLoad2BeginOp() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 247 SourceManager.getExpansionLoc(Node.getBeginLoc())); in AST_POLYMORPHIC_MATCHER() 267 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getBeginLoc()); in AST_POLYMORPHIC_MATCHER() 294 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getBeginLoc()); in AST_POLYMORPHIC_MATCHER_REGEX() 319 internal::getExpansionLocOfMacro(MacroName, Node.getBeginLoc(), Context); in AST_POLYMORPHIC_MATCHER_P() 322 internal::getExpansionLocOfMacro(MacroName, Node.getEndLoc(), Context); in AST_POLYMORPHIC_MATCHER_P() 630 return getAccessSpecifier(Node) == AS_public; in AST_POLYMORPHIC_MATCHER() 652 return getAccessSpecifier(Node) == AS_protected; in AST_POLYMORPHIC_MATCHER() 675 return getAccessSpecifier(Node) == AS_private; in AST_POLYMORPHIC_MATCHER() 690 return Node.isBitField(); in AST_MATCHER() 707 return Node.isBitField() && in AST_MATCHER_P() [all …]
|
H A D | ASTMatchersInternal.h | 152 inline QualType getUnderlyingType(const Expr &Node) { return Node.getType(); } 154 inline QualType getUnderlyingType(const ValueDecl &Node) { 155 return Node.getType(); 157 inline QualType getUnderlyingType(const TypedefNameDecl &Node) { 158 return Node.getUnderlyingType(); 160 inline QualType getUnderlyingType(const FriendDecl &Node) { 161 if (const TypeSourceInfo *TSI = Node.getFriendType()) 165 inline QualType getUnderlyingType(const CXXBaseSpecifier &Node) { 166 return Node.getType(); 177 inline TypeSourceInfo *GetTypeSourceInfo(const T &Node) { [all …]
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
H A D | sanitizer_stackdepotbase.h | 24 template <class Node, int kReservedBits, int kTabSizeLog> 27 typedef typename Node::args_type args_type; 28 typedef typename Node::handle_type handle_type; 40 static Node *find(Node *s, args_type args, u32 hash); 41 static Node *lock(atomic_uintptr_t *p); 42 static void unlock(atomic_uintptr_t *p, Node *s); 60 template <class Node, int kReservedBits, int kTabSizeLog> 61 Node *StackDepotBase<Node, kReservedBits, kTabSizeLog>::find(Node *s, in find() 73 template <class Node, int kReservedBits, int kTabSizeLog> 74 Node *StackDepotBase<Node, kReservedBits, kTabSizeLog>::lock( in lock() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
H A D | sanitizer_stackdepotbase.h | 22 template <class Node, int kReservedBits, int kTabSizeLog> 25 typedef typename Node::args_type args_type; 26 typedef typename Node::handle_type handle_type; 38 static Node *find(Node *s, args_type args, u32 hash); 39 static Node *lock(atomic_uintptr_t *p); 40 static void unlock(atomic_uintptr_t *p, Node *s); 58 template <class Node, int kReservedBits, int kTabSizeLog> 59 Node *StackDepotBase<Node, kReservedBits, kTabSizeLog>::find(Node *s, in find() 71 template <class Node, int kReservedBits, int kTabSizeLog> 72 Node *StackDepotBase<Node, kReservedBits, kTabSizeLog>::lock( in lock() [all …]
|
/netbsd-src/sys/external/bsd/acpica/dist/compiler/ |
H A D | aslload.c | 88 ACPI_NAMESPACE_NODE *Node, 93 ACPI_NAMESPACE_NODE *Node, 174 ACPI_NAMESPACE_NODE *Node; in LdLoadFieldElements() local 184 ACPI_NS_SEARCH_PARENT | ACPI_NS_DONT_OPEN_SCOPE, NULL, &Node); in LdLoadFieldElements() 239 ACPI_NS_ERROR_IF_FOUND, NULL, &Node); in LdLoadFieldElements() 249 (Node->Flags & ANOBJ_IS_EXTERNAL)) in LdLoadFieldElements() 251 Node->Type = (UINT8) ACPI_TYPE_LOCAL_REGION_FIELD; in LdLoadFieldElements() 252 Node->Flags &= ~ANOBJ_IS_EXTERNAL; in LdLoadFieldElements() 260 ExternalPath = AcpiNsGetNormalizedPathname (Node, TRUE); in LdLoadFieldElements() 263 ExternalPath, ASL_MSG_FOUND_HERE, Node->Op, in LdLoadFieldElements() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | TextNodeDumper.h | 175 void Visit(const Stmt *Node); 240 void VisitIfStmt(const IfStmt *Node); 241 void VisitSwitchStmt(const SwitchStmt *Node); 242 void VisitWhileStmt(const WhileStmt *Node); 243 void VisitLabelStmt(const LabelStmt *Node); 244 void VisitGotoStmt(const GotoStmt *Node); 245 void VisitCaseStmt(const CaseStmt *Node); 246 void VisitConstantExpr(const ConstantExpr *Node); 247 void VisitCallExpr(const CallExpr *Node); 248 void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *Node); [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/ |
H A D | RISCVISelDAGToDAG.cpp | 128 SDNode *Node, unsigned SEW, const SDLoc &DL, unsigned CurOp, bool IsMasked, in addVectorLoadStoreOperands() argument 130 SDValue Chain = Node->getOperand(0); in addVectorLoadStoreOperands() 134 SelectBaseAddr(Node->getOperand(CurOp++), Base); in addVectorLoadStoreOperands() 138 Operands.push_back(Node->getOperand(CurOp++)); // Index. in addVectorLoadStoreOperands() 145 SDValue Mask = Node->getOperand(CurOp++); in addVectorLoadStoreOperands() 151 selectVLOp(Node->getOperand(CurOp++), VL); in addVectorLoadStoreOperands() 163 void RISCVDAGToDAGISel::selectVLSEG(SDNode *Node, bool IsMasked, in selectVLSEG() argument 165 SDLoc DL(Node); in selectVLSEG() 166 unsigned NF = Node->getNumValues() - 1; in selectVLSEG() 167 MVT VT = Node->getSimpleValueType(0); in selectVLSEG() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
H A D | tsan_ilist.h | 27 template <typename Base, INode Base::*Node, typename Elem> 41 template <typename Base, INode Base::*Node, typename Elem = Base> 76 template <typename Base, INode Base::*Node, typename Elem> 77 IList<Base, Node, Elem>::IList() { in IList() 81 template <typename Base, INode Base::*Node, typename Elem> 82 void IList<Base, Node, Elem>::PushFront(Elem* e) { in PushFront() 86 template <typename Base, INode Base::*Node, typename Elem> 87 void IList<Base, Node, Elem>::PushBack(Elem* e) { in PushBack() 91 template <typename Base, INode Base::*Node, typename Elem> 92 void IList<Base, Node, Elem>::Push(Elem* e, INode* after) { in Push() [all …]
|
/netbsd-src/external/zlib/pigz/dist/zopfli/ |
H A D | katajainen.c | 30 typedef struct Node Node; typedef 35 struct Node { struct 37 Node* tail; /* Previous node(s) of this chain, or 0 if none. */ argument 46 Node* nodes; /* The pool. */ argument 47 Node* next; /* Pointer to a possibly free node in the pool. */ 54 static void InitNode(size_t weight, int count, Node* tail, Node* node) { in InitNode() 67 static Node* GetFreeNode(Node* (*lists)[2], int maxbits, NodePool* pool) { in GetFreeNode() 77 Node* node; in GetFreeNode() 105 static void BoundaryPM(Node* (*lists)[2], int maxbits, in BoundaryPM() 106 Node* leaves, int numsymbols, NodePool* pool, int index, char final) { in BoundaryPM() [all …]
|