• Home
  • Raw
  • Download

Lines Matching refs:bc_vec_init

872 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()
3034 bc_vec_init(&p->flags, sizeof(uint16_t), NULL); in bc_parse_init()
3036 bc_vec_init(&p->exits, sizeof(BcInstPtr), NULL); in bc_parse_init()
3037 bc_vec_init(&p->conds, sizeof(size_t), NULL); in bc_parse_init()
3038 bc_vec_init(&p->ops, sizeof(BcLexType), NULL); in bc_parse_init()
4738 bc_vec_init(&buf, sizeof(char), NULL); in bc_program_read()
5320 bc_vec_init(&p->fns, sizeof(BcFunc), bc_func_free); in bc_program_init()
5321 bc_vec_init(&p->fn_map, sizeof(struct str_len), bc_id_free); in bc_program_init()
5325 bc_vec_init(&p->vars, sizeof(BcVec), bc_vec_free); in bc_program_init()
5326 bc_vec_init(&p->var_map, sizeof(struct str_len), bc_id_free); in bc_program_init()
5328 bc_vec_init(&p->arrs, sizeof(BcVec), bc_vec_free); in bc_program_init()
5329 bc_vec_init(&p->arr_map, sizeof(struct str_len), bc_id_free); in bc_program_init()
5331 bc_vec_init(&p->results, sizeof(BcResult), bc_result_free); in bc_program_init()
5332 bc_vec_init(&p->stack, sizeof(BcInstPtr), NULL); in bc_program_init()
5719 bc_vec_init(&buffer, sizeof(uchar), NULL); in bc_vm_stdin()
5720 bc_vec_init(&buf, sizeof(uchar), NULL); in bc_vm_stdin()