HomeSort by: relevance | last modified time | path
    Searched refs:Node (Results 1 - 25 of 571) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/historical/nawk/dist/
proto.h 27 extern int constnode(Node *);
28 extern char *strnode(Node *);
29 extern Node *notnull(Node *);
41 extern void penter(Node *);
42 extern void freetr(Node *);
46 extern void cfoll(fa *, Node *);
47 extern int first(Node *);
48 extern void follow(Node *);
54 extern Node *reparse(const char *)
    [all...]
parse.c 36 Node *nodealloc(size_t n)
38 Node *x;
40 x = (Node *) malloc(sizeof(*x) + (n-1) * sizeof(x));
48 Node *exptostat(Node *a)
54 Node *node1(int a, Node *b)
56 Node *x;
64 Node *node2(int a, Node *b, Node *c
    [all...]
  /src/external/gpl2/xcvs/dist/src/
hash.h 30 struct node struct
33 struct node *next;
34 struct node *prev;
35 struct node *hashnext;
36 struct node *hashprev;
39 void (*delproc) (struct node *);
41 typedef struct node Node;
45 Node *list;
46 Node *hasharray[HASHSIZE]
    [all...]
hardlink.h 30 Node *lookup_file_by_inode (const char *);
34 int find_checkedout_proc (Node *, void *);
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtPrinter.cpp 150 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED {
154 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED {
158 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node);
162 void Visit##CLASS(CLASS *Node);
174 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
176 for (auto *I : Node->body())
191 void StmtPrinter::VisitNullStmt(NullStmt *Node) {
195 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) {
197 PrintRawDeclStmt(Node);
201 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
AMDGPUMetadataVerifier.cpp 24 msgpack::DocNode &Node, msgpack::Type SKind,
26 if (!Node.isScalar())
28 if (Node.getKind() != SKind) {
33 if (Node.getKind() != msgpack::Type::String)
35 StringRef StringValue = Node.getString();
36 Node.fromString(StringValue);
37 if (Node.getKind() != SKind)
41 return verifyValue(Node);
45 bool MetadataVerifier::verifyInteger(msgpack::DocNode &Node) {
46 if (!verifyScalar(Node, msgpack::Type::UInt)
    [all...]
MsgPackDocument.cpp 106 StackLevel(DocNode Node, size_t StartIndex, size_t Length,
108 : Node(Node), Index(StartIndex), End(StartIndex + Length),
110 DocNode Node;
150 DocNode Node;
153 Node = getNode();
156 Node = getNode(Obj.Int);
159 Node = getNode(Obj.UInt);
162 Node = getNode(Obj.Bool);
165 Node = getNode(Obj.Float)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 63 /// isPassiveNode - Return true if the node is a non-scheduled leaf.
65 static bool isPassiveNode(SDNode *Node) {
66 if (isa<ConstantSDNode>(Node)) return true;
67 if (isa<ConstantFPSDNode>(Node)) return true;
68 if (isa<RegisterSDNode>(Node)) return true;
69 if (isa<RegisterMaskSDNode>(Node)) return true;
70 if (isa<GlobalAddressSDNode>(Node)) return true;
71 if (isa<BasicBlockSDNode>(Node)) return true;
72 if (isa<FrameIndexSDNode>(Node)) return true;
73 if (isa<ConstantPoolSDNode>(Node)) return true
    [all...]
LegalizeVectorOps.cpp 66 /// Adds a node to the translation cache.
69 // If someone requests legalization of the new node, return itself.
74 /// Legalizes the given node.
77 /// Assuming the node is legal, "legalize" the results.
87 /// target wants to keep the input node as is.
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);
    [all...]
  /src/sys/external/bsd/acpica/dist/namespace/
nsobject.c 58 * PARAMETERS: Node - Parent Node
68 * Note: Future may require that the Node->Flags field be passed
77 ACPI_NAMESPACE_NODE *Node,
92 if (!Node)
109 if (ACPI_GET_DESCRIPTOR_TYPE (Node) != ACPI_DESC_TYPE_NAMED)
114 Node, AcpiUtGetDescriptorName (Node)));
120 if (Node->Object == Object)
124 Object, Node));
    [all...]
nsxfobj.c 74 ACPI_NAMESPACE_NODE *Node;
85 /* Special case for the predefined Root Node (return type ANY) */
101 Node = AcpiNsValidateHandle (Handle);
102 if (!Node)
108 *RetType = Node->Type;
136 ACPI_NAMESPACE_NODE *Node;
146 /* Special case for the predefined Root Node (no parent) */
161 Node = AcpiNsValidateHandle (Handle);
162 if (!Node)
170 ParentNode = Node->Parent
    [all...]
nssearch.c 60 ACPI_NAMESPACE_NODE *Node,
70 * ParentNode - Starting node where search will begin
104 ACPI_NAMESPACE_NODE *Node;
132 Node = ParentNode->Child;
133 while (Node)
137 if (Node->Name.Integer == TargetName)
141 if (AcpiNsGetType (Node) == ACPI_TYPE_LOCAL_METHOD_ALIAS)
143 Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, Node->Object);
151 AcpiUtGetTypeName (Node->Type)
    [all...]
nsalloc.c 57 * PARAMETERS: Name - Name of the new node (4 char ACPI name)
59 * RETURN: New namespace node (Null on failure)
61 * DESCRIPTION: Create a namespace node
69 ACPI_NAMESPACE_NODE *Node;
78 Node = AcpiOsAcquireObject (AcpiGbl_NamespaceCache);
79 if (!Node)
95 Node->Name.Integer = Name;
96 ACPI_SET_DESCRIPTOR_TYPE (Node, ACPI_DESC_TYPE_NAMED);
97 return_PTR (Node);
105 * PARAMETERS: Node - Node to be delete
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Tree.h 12 // The tree is initially built from an AST. Each node of a newly built tree
78 /// A node in a syntax tree. Each node is either a Leaf (representing tokens) or
80 class Node {
83 /// set when the node is added as a child to another one.
84 Node(NodeKind Kind);
86 ~Node() = default;
90 Node(const Node &) = delete;
91 Node &operator=(const Node &) = delete
    [all...]
  /src/external/gpl2/texinfo/dist/util/
prepinfo.awk 3 # prepinfo.awk --- fix node lines and menus
75 $1 == "@node" \
100 # skip fake nodes --- titles without associated @node lines
116 printf("%s line with no @node or fakenode line\n",
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
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsargs.c 59 ACPI_NAMESPACE_NODE *Node,
69 * PARAMETERS: Node - Object NS node
70 * ScopeNode - Parent NS node
82 ACPI_NAMESPACE_NODE *Node,
103 /* Save the Node for use in AcpiPsParseAml */
105 Op->Common.Node = ScopeNode;
127 WalkState->DeferredNode = Node;
139 Op->Common.Node = Node;
    [all...]
dswload2.c 79 ACPI_NAMESPACE_NODE *Node;
154 Node = NULL;
166 WalkState, &(Node));
171 /* Special case for Scope(\) -> refers to the Root node */
173 if (Op && (Op->Named.Node == AcpiGbl_RootNode))
175 Node = Op->Named.Node;
177 Status = AcpiDsScopeStackPush (Node, ObjectType, WalkState);
192 WalkState, &(Node));
217 switch (Node->Type
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyISelDAGToDAG.cpp 59 void Select(SDNode *Node) override;
72 void WebAssemblyDAGToDAGISel::Select(SDNode *Node) {
73 // If we have a custom node, we already have selected!
74 if (Node->isMachineOpcode()) {
75 LLVM_DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n");
76 Node->setNodeId(-1);
85 SDLoc DL(Node);
87 switch (Node->getOpcode()) {
93 cast<ConstantSDNode>(Node->getOperand(2).getNode())->getZExtValue();
103 Node->getOperand(0) // inchai
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
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);
52 atomic_uintptr_t tab[kTabSize]; // Hash table of Node's.
60 template <class Node, int kReservedBits, int kTabSizeLog>
61 Node *StackDepotBase<Node, kReservedBits, kTabSizeLog>::find(Node *s
107 Node *node = find(s, args, h); local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_ilist.h 27 template <typename Base, INode Base::*Node, typename Elem>
35 // The node class (MyNode) needs to include "INode foo" field,
39 // The optional Elem template argument allows to specify node MDT
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() {
81 template <typename Base, INode Base::*Node, typename Elem>
82 void IList<Base, Node, Elem>::PushFront(Elem* e) {
86 template <typename Base, INode Base::*Node, typename Elem>
87 void IList<Base, Node, Elem>::PushBack(Elem* e)
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_ilist.h 27 template <typename Base, INode Base::*Node, typename Elem>
35 // The node class (MyNode) needs to include "INode foo" field,
39 // The optional Elem template argument allows to specify node MDT
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() {
81 template <typename Base, INode Base::*Node, typename Elem>
82 void IList<Base, Node, Elem>::PushFront(Elem* e) {
86 template <typename Base, INode Base::*Node, typename Elem>
87 void IList<Base, Node, Elem>::PushBack(Elem* e)
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exresnte.c 60 * a pointer to a NS node, and will receive a
67 * DESCRIPTION: Resolve a Namespace node to a valued object
69 * Note: for some of the data types, the pointer attached to the Node
90 ACPI_NAMESPACE_NODE *Node;
98 * The stack pointer points to a ACPI_NAMESPACE_NODE (Node). Get the
99 * object that is attached to the Node.
101 Node = *ObjectPtr;
102 SourceDesc = AcpiNsGetAttachedObject (Node);
103 EntryType = AcpiNsGetType ((ACPI_HANDLE) Node);
106 Node, SourceDesc, AcpiUtGetTypeName (EntryType)))
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslload.c 88 ACPI_NAMESPACE_NODE *Node,
93 ACPI_NAMESPACE_NODE *Node,
156 * Op - Parent node (Field)
174 ACPI_NAMESPACE_NODE *Node;
184 ACPI_NS_SEARCH_PARENT | ACPI_NS_DONT_OPEN_SCOPE, NULL, &Node);
239 ACPI_NS_ERROR_IF_FOUND, NULL, &Node);
249 (Node->Flags & ANOBJ_IS_EXTERNAL))
251 Node->Type = (UINT8) ACPI_TYPE_LOCAL_REGION_FIELD;
252 Node->Flags &= ~ANOBJ_IS_EXTERNAL;
260 ExternalPath = AcpiNsGetNormalizedPathname (Node, TRUE)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DDGPrinter.cpp 59 std::string DDGDotGraphTraits::getNodeLabel(const DDGNode *Node,
62 return getSimpleNodeLabel(Node, Graph);
64 return getVerboseNodeLabel(Node, Graph);
68 const DDGNode *Node, GraphTraits<const DDGNode *>::ChildIteratorType I,
72 return getSimpleEdgeAttributes(Node, E, G);
74 return getVerboseEdgeAttributes(Node, E, G);
77 bool DDGDotGraphTraits::isNodeHidden(const DDGNode *Node,
79 if (isSimple() && isa<RootDDGNode>(Node))
82 return Graph->getPiBlock(*Node) != nullptr;
86 DDGDotGraphTraits::getSimpleNodeLabel(const DDGNode *Node,
    [all...]
Interval.cpp 30 for (const BasicBlock *Node : Nodes)
31 OS << *Node << "\n";

Completed in 84 milliseconds

1 2 3 4 5 6 7 8 91011>>