HomeSort by: relevance | last modified time | path
    Searched refs:new_node (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
PGOProfiling.c 46 struct writeout_fn_node *new_node = malloc(sizeof(struct writeout_fn_node)); local in function:llvm_pgo_register_writeout_function
47 new_node->fn = fn;
48 new_node->next = NULL;
51 writeout_fn_head = writeout_fn_tail = new_node;
53 writeout_fn_tail->next = new_node;
54 writeout_fn_tail = new_node;
GCDAProfiling.c 506 struct writeout_fn_node *new_node = malloc(sizeof(struct writeout_fn_node)); local in function:llvm_register_writeout_function
507 new_node->fn = fn;
508 new_node->next = NULL;
511 writeout_fn_head = writeout_fn_tail = new_node;
513 writeout_fn_tail->next = new_node;
514 writeout_fn_tail = new_node;
538 struct flush_fn_node *new_node = malloc(sizeof(struct flush_fn_node)); local in function:llvm_register_flush_function
539 new_node->fn = fn;
540 new_node->next = NULL;
543 flush_fn_head = flush_fn_tail = new_node;
    [all...]
  /src/sys/arch/hpc/hpc/platid_gen/
platid_gen.h 46 node_t *new_node(int, int, const void *, const void *, node_t *);
gram.y 46 (l) = new_node(N_LIST, 0, NULL, NULL, NULL); \
93 sym ':' { $$ = new_node(N_LABEL, 0, $1, NULL, NULL); } |
94 sym '=' sym { $$ = new_node(N_MODIFIER, 0, $1, $3, NULL); } |
97 DIRECTIVE { $$ = new_node(N_DIRECTIVE, 0, $1, NULL, NULL); };
104 sym '=' sym { $$ = new_node(N_MODIFIER, 0, $1, $3, NULL); }|
107 DIRECTIVE { $$ = new_node(N_DIRECTIVE, 0, $1, NULL, NULL); };
121 name_prefix NAME { $$ = new_node(N_ENTRY, $1, NULL, $2, NULL); } |
122 name_prefix { $$ = new_node(N_ENTRY, $1, NULL, NULL, NULL); };
162 new_node(type, val, ptr1, ptr2, link)
  /src/sys/arch/sparc64/dev/
pci_machdep.c 118 int node, new_node, len; local in function:pci_make_tag
196 new_node = prom_firstchild(node);
197 if (new_node == 0)
199 node = new_node;
  /src/sys/dev/fdt/
fdtbus.c 501 fdt_add_node(struct fdt_node *new_node)
506 if (node->n_order > new_node->n_order) {
507 TAILQ_INSERT_BEFORE(node, new_node, n_nodes);
510 TAILQ_INSERT_TAIL(&fdt_nodes, new_node, n_nodes);

Completed in 13 milliseconds