Home
last modified time | relevance | path

Searched refs:node (Results 1 – 8 of 8) sorted by relevance

/busybox-1.35.0/archival/libarchive/
Dlzo1x_9x.c225 static void swd_remove_node(lzo_swd_p s, unsigned node) in swd_remove_node() argument
230 key = HEAD3(s->b,node); in swd_remove_node()
235 key = HEAD2(s->b,node); in swd_remove_node()
237 if ((unsigned) s->head2[key] == node) in swd_remove_node()
279 static void swd_search(lzo_swd_p s, unsigned node, unsigned cnt) in swd_search() argument
293 for ( ; cnt-- > 0; node = s->succ3[node]) { in swd_search()
295 p2 = b + node; in swd_search()
306 assert(lzo_memcmp(bp, &b[node], 3) == 0); in swd_search()
312 assert(lzo_memcmp(bp, &b[node], i) == 0); in swd_search()
317 s->best_pos[i] = node + 1; in swd_search()
[all …]
/busybox-1.35.0/shell/
Dash.c884 union node;
889 union node *assign;
890 union node *args;
891 union node *redirect;
903 union node *n;
904 union node *redirect;
909 union node *ch1;
910 union node *ch2;
915 union node *test;
916 union node *ifpart;
[all …]
Dash_remove_unnecessary_code_in_backquote_expansion.patch79 @@ -6394,8 +6391,6 @@ evalbackcmd(union node *n, struct backcmd *result)
88 @@ -6432,8 +6427,7 @@ evalbackcmd(union node *n, struct backcmd *result)
98 @@ -6445,7 +6439,6 @@ expbackq(union node *cmd, int flag)
106 @@ -6457,24 +6450,12 @@ expbackq(union node *cmd, int flag)
/busybox-1.35.0/editors/
Dawk.c193 } node; typedef
196 node n;
548 node *break_ptr, *continue_ptr;
1306 static node *new_node(uint32_t info) in new_node()
1308 node *n; in new_node()
1310 n = xzalloc(sizeof(node)); in new_node()
1316 static void mk_re_node(const char *s, node *n, regex_t *re) in mk_re_node()
1325 static node *parse_expr(uint32_t);
1327 static node *parse_lrparen_list(void) in parse_lrparen_list()
1335 static node *parse_expr(uint32_t term_tc) in parse_expr()
[all …]
/busybox-1.35.0/archival/
Ddpkg.c413 static void add_edge_to_node(common_node_t *node, edge_t *edge) in add_edge_to_node() argument
415 node->edge = xrealloc_vector(node->edge, 2, node->num_of_edges); in add_edge_to_node()
416 node->edge[node->num_of_edges++] = edge; in add_edge_to_node()
521 static void free_package(common_node_t *node) in free_package() argument
524 if (node) { in free_package()
525 for (i = 0; i < node->num_of_edges; i++) { in free_package()
526 free(node->edge[i]); in free_package()
528 free(node->edge); in free_package()
529 free(node); in free_package()
Dgzip.c1319 int node = elems; /* next internal node of the tree */ in build_tree() local
1371 tree[node].Freq = tree[n].Freq + tree[m].Freq; in build_tree()
1372 G2.depth[node] = MAX(G2.depth[n], G2.depth[m]) + 1; in build_tree()
1373 tree[n].Dad = tree[m].Dad = (ush) node; in build_tree()
1377 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq); in build_tree()
1381 G2.heap[SMALLEST] = node++; in build_tree()
/busybox-1.35.0/docs/
Dmdev.txt37 a device is added or removed so that the device node can be created or
73 So if you want to place the device node into a subdirectory, make sure the path
74 has a trailing /. If you want to rename the device node, just place the name.
/busybox-1.35.0/scripts/kconfig/
Dgconf.c76 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row);
1301 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row) in set_node() argument
1314 gtk_tree_store_set(tree, node, in set_node()
1340 GtkTreeIter *node = parents[indent]; in place_node() local
1342 gtk_tree_store_append(tree, node, parent); in place_node()
1343 set_node(node, menu, row); in place_node()