Lines Matching defs:bc_vec_init
873 void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor) {
1967 bc_vec_init(&stack, sizeof(unsigned long), NULL);
2359 bc_vec_init(&f->code, sizeof(uchar), NULL);
2360 bc_vec_init(&f->strs, sizeof(char*), bc_string_free);
2361 bc_vec_init(&f->consts, sizeof(char*), bc_string_free);
2362 bc_vec_init(&f->autos, sizeof(struct str_len), bc_id_free);
2363 bc_vec_init(&f->labels, sizeof(size_t), NULL);
2389 if (nums) bc_vec_init(a, sizeof(BcNum), bc_num_free);
2390 else bc_vec_init(a, sizeof(BcVec), bc_vec_free);
2574 bc_vec_init(&l->str, sizeof(char), NULL);
3036 bc_vec_init(&p->flags, sizeof(uint16_t), NULL);
3038 bc_vec_init(&p->exits, sizeof(BcInstPtr), NULL);
3039 bc_vec_init(&p->conds, sizeof(size_t), NULL);
3040 bc_vec_init(&p->ops, sizeof(BcLexType), NULL);
4753 bc_vec_init(&buf, sizeof(char), NULL);
5336 bc_vec_init(&p->fns, sizeof(BcFunc), bc_func_free);
5337 bc_vec_init(&p->fn_map, sizeof(struct str_len), bc_id_free);
5341 bc_vec_init(&p->vars, sizeof(BcVec), bc_vec_free);
5342 bc_vec_init(&p->var_map, sizeof(struct str_len), bc_id_free);
5344 bc_vec_init(&p->arrs, sizeof(BcVec), bc_vec_free);
5345 bc_vec_init(&p->arr_map, sizeof(struct str_len), bc_id_free);
5347 bc_vec_init(&p->results, sizeof(BcResult), bc_result_free);
5348 bc_vec_init(&p->stack, sizeof(BcInstPtr), NULL);
5741 bc_vec_init(&buffer, sizeof(uchar), NULL);
5742 bc_vec_init(&buf, sizeof(uchar), NULL);