Home
last modified time | relevance | path

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

/external/toybox/toys/pending/
Dbc.c872 void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor) { in bc_vec_init() function
1965 bc_vec_init(&stack, sizeof(unsigned long), NULL); in bc_num_printNum()
2357 bc_vec_init(&f->code, sizeof(uchar), NULL); in bc_func_init()
2358 bc_vec_init(&f->strs, sizeof(char*), bc_string_free); in bc_func_init()
2359 bc_vec_init(&f->consts, sizeof(char*), bc_string_free); in bc_func_init()
2360 bc_vec_init(&f->autos, sizeof(struct str_len), bc_id_free); in bc_func_init()
2361 bc_vec_init(&f->labels, sizeof(size_t), NULL); in bc_func_init()
2387 if (nums) bc_vec_init(a, sizeof(BcNum), bc_num_free); in bc_array_init()
2388 else bc_vec_init(a, sizeof(BcVec), bc_vec_free); in bc_array_init()
2572 bc_vec_init(&l->str, sizeof(char), NULL); in bc_lex_init()
[all …]