Lines Matching defs:ops
448 BcVec ops;
520 #define BC_PARSE_TOP_OP(p) (*((BcLexType*) bc_vec_top(&(p)->ops)))
3020 bc_vec_npop(&p->ops, p->ops.len);
3029 bc_vec_free(&p->ops);
3040 bc_vec_init(&p->ops, sizeof(BcLexType), NULL);
3142 while (p->ops.len > start) {
3151 bc_vec_pop(&p->ops);
3155 bc_vec_push(&p->ops, &type);
3162 if (p->ops.len <= ops_bgn) return bc_parse_err(p, BC_ERROR_PARSE_EXPR);
3168 bc_vec_pop(&p->ops);
3171 if (p->ops.len <= ops_bgn) return bc_parse_err(p, BC_ERROR_PARSE_EXPR);
3174 bc_vec_pop(&p->ops);
3441 if (type != BC_LEX_OP_MINUS) bc_vec_push(&p->ops, &type);
4187 size_t nexprs = 0, ops_bgn = p->ops.len;
4279 bc_vec_push(&p->ops, &t);
4407 while (p->ops.len > ops_bgn) {
4418 bc_vec_pop(&p->ops);