Lines Matching defs:exits
446 BcVec exits;
3018 bc_vec_npop(&p->exits, p->exits.len);
3027 bc_vec_free(&p->exits);
3038 bc_vec_init(&p->exits, sizeof(BcInstPtr), NULL);
3095 BcInstPtr *ip = bc_vec_top(&p->exits);
3101 bc_vec_pop(&p->exits);
3121 bc_vec_push(&p->exits, &ip);
3792 if (!p->exits.len) return bc_parse_err(p, BC_ERROR_PARSE_TOKEN);
3794 i = p->exits.len - 1;
3795 ip = bc_vec_item(&p->exits, i);
3797 while (!ip->func && i < p->exits.len) ip = bc_vec_item(&p->exits, i--);
3798 if (i >= p->exits.len && !ip->func)