Home
last modified time | relevance | path

Searched refs:NODE (Results 1 – 25 of 42) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumNodes.def11 #ifndef NODE
12 #error Define NODE to handle nodes
15 NODE(NodeArrayNode)
16 NODE(DotSuffix)
17 NODE(VendorExtQualType)
18 NODE(QualType)
19 NODE(ConversionOperatorType)
20 NODE(PostfixQualifiedType)
21 NODE(ElaboratedTypeSpefType)
22 NODE(TransformedTyp
[all...]
/freebsd/usr.bin/tsort/
H A Dtsort.c70 typedef struct node_str NODE; typedef
73 NODE **n_prevp; /* pointer to previous node's n_next */
74 NODE *n_next; /* next node in graph */
75 NODE **n_arcs; /* array of arcs to other nodes */
89 static NODE *graph, **cycle_buf, **longest_cycle;
93 static int find_cycle(NODE *, NODE *, int, int);
94 static NODE *get_node(char *);
96 static void remove_node(NODE *);
194 NODE *n1; in add_arc()
195 NODE *n2; in add_arc()
[all …]
/freebsd/usr.bin/ctags/
H A Dtree.c41 static void add_node(NODE *, NODE *);
42 static void free_tree(NODE *);
51 NODE *np; in pfnote()
56 if (!(np = (NODE *)malloc(sizeof(NODE)))) { in pfnote()
61 if (!(head = np = (NODE *)malloc(sizeof(NODE)))) in pfnote()
89 add_node(NODE *node, NODE *cur_nod
[all...]
H A Dctags.h65 } NODE;
68 extern NODE *head; /* head of the sorted binary tree */
87 extern void put_entries(NODE *);
66 } NODE; global() typedef
H A Dprint.c91 put_entries(NODE *node) in put_entries()
/freebsd/contrib/mtree/
H A Dspec.c100 static void replacenode(NODE *, NODE *);
101 static void set(char *, NODE *);
102 static void unset(char *, NODE *);
103 static void addchild(NODE *, NODE *);
104 static int nodecmp(const NODE *, const NODE *);
109 NODE *
112 NODE *centry, *last, *pathparent, *cur; in spec()
114 NODE ginfo, *root; in spec()
207 if ((centry = calloc(1, sizeof(NODE) + strlen(p))) == NULL) in spec()
268 free_nodes(NODE *root) in free_nodes()
[all …]
H A Dspecspec.c56 shownode(NODE *n, int f, char const *path) in shownode()
106 mismatch(NODE *n1, NODE *n2, int differ, char const *path) in mismatch()
128 compare_nodes(NODE *n1, NODE *n2, char const *path) in compare_nodes()
193 walk_in_the_forest(NODE *t1, NODE *t2, char const *path) in walk_in_the_forest()
196 NODE *c1, *c2, *n1, *n2; in walk_in_the_forest()
264 NODE *root1, *root2; in mtree_specspec()
H A Dextern.h64 int compare(NODE *, FTSENT *);
67 void dump_nodes(FILE *, const char *, NODE *, int);
69 int matchtags(NODE *);
H A Dmtree.h108 } NODE; typedef
124 NODE *spec(FILE *);
126 void free_nodes(NODE *);
H A Dverify.c60 static NODE *root;
63 static void miss(NODE *, char *);
82 NODE *ep, *level; in vwalk()
172 miss(NODE *p, char *tail) in miss()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kInstrShiftRotate.td55 class MxSR_DD<string MN, MxType TYPE, SDNode NODE, bit RODI, bits<2> ROOP>
58 [(set TYPE.VT:$dst, (NODE TYPE.VT:$src, TYPE.VT:$opd))]> {
64 class MxSR_DI<string MN, MxType TYPE, SDNode NODE, bit RODI, bits<2> ROOP>
69 (NODE TYPE.VT:$src,
75 multiclass MxSROp<string MN, SDNode NODE, bit RODI, bits<2> ROOP> {
80 def NAME#"8dd" : MxSR_DD<MN, MxType8d, NODE, RODI, ROOP>;
81 def NAME#"16dd" : MxSR_DD<MN, MxType16d, NODE, RODI, ROOP>;
82 def NAME#"32dd" : MxSR_DD<MN, MxType32d, NODE, RODI, ROOP>;
84 def NAME#"8di" : MxSR_DI<MN, MxType8d, NODE, RODI, ROOP>;
85 def NAME#"16di" : MxSR_DI<MN, MxType16d, NODE, RODI, ROOP>;
[all …]
H A DM68kInstrArithmetic.td68 class MxBiArOp_R_RR_xEA<string MN, SDNode NODE, MxType DST_TYPE, MxType SRC_TYPE,
72 [(set DST_TYPE.VT:$dst, CCR, (NODE DST_TYPE.VT:$src, SRC_TYPE.VT:$opd))]> {
89 class MxBiArOp_R_RR_EAd<string MN, SDNode NODE, MxType TYPE, bits<4> CMD>
92 [(set TYPE.VT:$dst, CCR, (NODE TYPE.VT:$src, TYPE.VT:$opd))]> {
102 class MxBiArOp_R_RM<string MN, SDNode NODE, MxType TYPE, MxOperand OPD, ComplexPattern PAT,
106 [(set TYPE.VT:$dst, CCR, (NODE TYPE.VT:$src, (TYPE.Load PAT:$opd)))]> {
130 class MxBiArOp_R_RI_xEA<string MN, SDNode NODE, MxType TYPE, bits<4> CMD>
133 [(set TYPE.VT:$dst, CCR, (NODE TYPE.VT:$src, TYPE.IPat:$opd))]> {
145 class MxBiArOp_R_RI<string MN, SDNode NODE, MxType TYPE, bits<4> CMD>
148 [(set TYPE.VT:$dst, CCR, (NODE TYPE.VT:$src, TYPE.IPat:$opd))]> {
[all …]
/freebsd/sys/contrib/libsodium/dist-build/
H A Demscripten.sh126 if test "x$NODE" = x; then
130 NODE=$candidate
140 if test "x$NODE" = x; then
144 echo "Using [${NODE}] as a Javascript runtime"
156 fgrep -v "#! /usr/bin/env ${NODE}" "$file" > "browser/${file}"
169 echo "#! /usr/bin/env ${NODE}" > "${file}.tmp"
170 fgrep -v "#! /usr/bin/env ${NODE}" "$file" >> "${file}.tmp"
/freebsd/share/examples/netgraph/
H A Dvirtual.lan173 for NODE in ${TARGET_TOPOLOGY}; do
179 NODE_NAME=`echo ${NODE} | awk -F"|" '{print $1}'`
180 NODE_IP=`echo ${NODE} | awk -F"|" '{print $2}'`
293 for NODE in ${OBJECTS}; do
294 jail -r ${NODE}
H A Dvirtual.chain304 for NODE in ${OBJECTS}; do
305 jail -r ${NODE}
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.h26 #define HANDLE_NODETYPE(NODE) NODE, argument
27 #define HANDLE_MEM_NODETYPE(NODE) argument
32 #define HANDLE_NODETYPE(NODE) argument
33 #define HANDLE_MEM_NODETYPE(NODE) NODE, argument
/freebsd/sbin/restore/
H A Dutilities.c68 ep = addentry(name, pathsearch(name)->d_ino, NODE); in pathcheck()
135 if (np->e_type != NODE) in newnode()
154 if (ep->e_type != NODE) in removenode()
284 if (ep == NULL || ep->e_type == NODE) in lowerbnd()
302 if (ep == NULL || ep->e_type == NODE) in upperbnd()
330 ep->e_type == NODE ? "NODE" : "LEAF"); in badentry()
H A Drestore.c82 if (type == NODE) { in addfile()
96 if (type == NODE) in addfile()
119 if (ep->e_type != NODE) in deletefile()
326 if (type == NODE) in nodeupdates()
357 if (ip->e_type == NODE) { in nodeupdates()
380 if (type == NODE) in nodeupdates()
794 if (ep->e_type == NODE) { in createlinks()
819 if (ep->e_type == NODE) in checkrestore()
H A Drestore.h83 #define NODE 2 /* directory entry */ macro
/freebsd/contrib/libarchive/libarchive/
H A Darchive_ppmd7.c73 #define NODE(ptr) (ptr) macro
75 #define NODE(offs) ((CPpmd7_Node *)(p->Base + (offs))) macro
199 CPpmd7_Node *node = NODE(next); in GlueFreeBlocks()
201 n = NODE(n)->Prev = next; in GlueFreeBlocks()
207 NODE(head)->Stamp = 1; in GlueFreeBlocks()
208 NODE(head)->Next = n; in GlueFreeBlocks()
209 NODE(n)->Prev = head; in GlueFreeBlocks()
216 CPpmd7_Node *node = NODE(n); in GlueFreeBlocks()
220 CPpmd7_Node *node2 = NODE(n) + nu; in GlueFreeBlocks()
224 NODE(node2->Prev)->Next = node2->Next; in GlueFreeBlocks()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DSymbolTableListTraits.h49 #define DEFINE_SYMBOL_TABLE_PARENT_TYPE(NODE, PARENT) \ argument
50 template <> struct SymbolTableListParentType<NODE> { using type = PARENT; };
/freebsd/usr.sbin/makefs/
H A Dwalk.c57 static void apply_specdir(const char *, NODE *, fsnode *, int);
58 static void apply_specentry(const char *, NODE *, fsnode *);
307 NODE *root; in apply_specfile()
337 apply_specdir(const char *dir, NODE *specnode, fsnode *dirnode, int speconly) in apply_specdir()
340 NODE *curnode; in apply_specdir()
471 apply_specentry(const char *dir, NODE *specnode, fsnode *dirnode) in apply_specentry()
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp225 #define NODE(name) \ in getTargetNodeName() macro
232 NODE(RET_GLUE); in getTargetNodeName()
233 NODE(RETI_GLUE); in getTargetNodeName()
234 NODE(CALL); in getTargetNodeName()
235 NODE(WRAPPER); in getTargetNodeName()
236 NODE(LSL); in getTargetNodeName()
237 NODE(LSLW); in getTargetNodeName()
238 NODE(LSR); in getTargetNodeName()
239 NODE(LSRW); in getTargetNodeName()
240 NODE(ROL); in getTargetNodeName()
[all …]
/freebsd/sys/powerpc/psim/
H A Diobusvar.h47 IOBUS_ACCESSOR(node, NODE, phandle_t)
/freebsd/sys/xen/xenbus/
H A Dxenbusvar.h94 XENBUS_ACCESSOR(node, NODE, const char *)

12