Searched refs:ops_bgn (Results 1 – 2 of 2) sorted by relevance
/external/bc/src/ |
D | bc_parse.c | 425 static void bc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn, in bc_parse_minus() argument 438 else bc_parse_operator(p, type, ops_bgn, nexprs); in bc_parse_minus() 1175 size_t nexprs = 0, ops_bgn = p->ops.len; in bc_parse_expr_err() local 1225 bc_parse_minus(p, &prev, ops_bgn, rprn, bin_last, &nexprs); in bc_parse_expr_err() 1281 bc_parse_operator(p, t, ops_bgn, &nexprs); in bc_parse_expr_err() 1449 while (p->ops.len > ops_bgn) { in bc_parse_expr_err()
|
/external/toybox/toys/pending/ |
D | bc.c | 3158 static BcStatus bc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs) { in bc_parse_rightParen() argument 3162 if (p->ops.len <= ops_bgn) return bc_parse_err(p, BC_ERROR_PARSE_EXPR); in bc_parse_rightParen() 3171 if (p->ops.len <= ops_bgn) return bc_parse_err(p, BC_ERROR_PARSE_EXPR); in bc_parse_rightParen() 3427 static BcStatus bc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn, in bc_parse_minus() argument 3442 else bc_parse_operator(p, type, ops_bgn, nexprs); in bc_parse_minus() 4187 size_t nexprs = 0, ops_bgn = p->ops.len; in bc_parse_expr_err() local 4218 s = bc_parse_minus(p, &prev, ops_bgn, rprn, bin_last, &nexprs); in bc_parse_expr_err() 4263 bc_parse_operator(p, t, ops_bgn, &nexprs); in bc_parse_expr_err() 4304 s = bc_parse_rightParen(p, ops_bgn, &nexprs); in bc_parse_expr_err() 4407 while (p->ops.len > ops_bgn) { in bc_parse_expr_err()
|