Home
last modified time | relevance | path

Searched refs:alloc_node (Results 1 – 2 of 2) sorted by relevance

/external/iproute2/misc/
Dssfilter.y13 static struct ssfilter * alloc_node(int type, void *pred) in alloc_node() function
55 $$ = alloc_node(SSF_DCOND, $2);
59 $$ = alloc_node(SSF_SCOND, $2);
63 $$ = alloc_node(SSF_D_GE, $3);
67 $$ = alloc_node(SSF_D_LE, $3);
71 $$ = alloc_node(SSF_NOT, alloc_node(SSF_D_LE, $3));
75 $$ = alloc_node(SSF_NOT, alloc_node(SSF_D_GE, $3));
79 $$ = alloc_node(SSF_DCOND, $3);
83 $$ = alloc_node(SSF_NOT, alloc_node(SSF_DCOND, $3));
88 $$ = alloc_node(SSF_S_GE, $3);
[all …]
/external/bluetooth/bluedroid/btif/src/
Dbtif_config.c91 static inline short alloc_node(cfg_node* p, short grow);
133 alloc_node(&root, CFG_GROW_SIZE); in btif_config_init()
338 static inline short alloc_node(cfg_node* p, short grow) in alloc_node() function
422 int old_size = alloc_node(p, CFG_GROW_SIZE); in find_add_node()