Home
last modified time | relevance | path

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

/external/toybox/toys/pending/
Dbc.c3156 static BcStatus bc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs) { in bc_parse_rightParen() argument
3160 if (p->ops.len <= ops_bgn) return bc_parse_err(p, BC_ERROR_PARSE_EXPR); in bc_parse_rightParen()
3169 if (p->ops.len <= ops_bgn) return bc_parse_err(p, BC_ERROR_PARSE_EXPR); in bc_parse_rightParen()
3425 static BcStatus bc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn, in bc_parse_minus() argument
3440 else bc_parse_operator(p, type, ops_bgn, nexprs); in bc_parse_minus()
4172 size_t nexprs = 0, ops_bgn = p->ops.len; in bc_parse_expr_err() local
4203 s = bc_parse_minus(p, &prev, ops_bgn, rprn, bin_last, &nexprs); in bc_parse_expr_err()
4248 bc_parse_operator(p, t, ops_bgn, &nexprs); in bc_parse_expr_err()
4289 s = bc_parse_rightParen(p, ops_bgn, &nexprs); in bc_parse_expr_err()
4392 while (p->ops.len > ops_bgn) { in bc_parse_expr_err()