Searched refs:nexprs (Results 1 – 2 of 2) sorted by relevance
/external/bc/src/ |
D | bc_parse.c | 252 bc_parse_operator(BcParse* p, BcLexType type, size_t start, size_t* nexprs) in bc_parse_operator() argument 284 *nexprs -= !BC_PARSE_OP_PREFIX(t); in bc_parse_operator() 299 bc_parse_rightParen(BcParse* p, size_t* nexprs) in bc_parse_rightParen() argument 308 *nexprs -= !BC_PARSE_OP_PREFIX(top); in bc_parse_rightParen() 793 bool binlast, size_t* nexprs) in bc_parse_minus() argument 806 else bc_parse_operator(p, type, ops_bgn, nexprs); in bc_parse_minus() 2003 size_t nexprs, ops_bgn; in bc_parse_expr_err() local 2031 nexprs = 0; in bc_parse_expr_err() 2058 bc_parse_incdec(p, &prev, &can_assign, &nexprs, flags); in bc_parse_expr_err() 2091 bc_parse_minus(p, &prev, ops_bgn, rprn, bin_last, &nexprs); in bc_parse_expr_err() [all …]
|
/external/toybox/toys/pending/ |
D | bc.c | 3141 size_t start, size_t *nexprs) in bc_parse_operator() argument 3157 *nexprs -= !BC_PARSE_OP_PREFIX(t); in bc_parse_operator() 3433 int rparen, int bin_last, size_t *nexprs) in bc_parse_minus() argument 3447 else bc_parse_operator(p, type, ops_bgn, nexprs); in bc_parse_minus() 4192 size_t nexprs = 0, ops_bgn = p->ops.len; in bc_parse_expr_err() local 4215 s = bc_parse_incdec(p, &prev, &nexprs, flags); in bc_parse_expr_err() 4223 s = bc_parse_minus(p, &prev, ops_bgn, rprn, bin_last, &nexprs); in bc_parse_expr_err() 4268 bc_parse_operator(p, t, ops_bgn, &nexprs); in bc_parse_expr_err() 4309 s = bc_parse_rightParen(p, ops_bgn, &nexprs); in bc_parse_expr_err() 4322 ++nexprs; in bc_parse_expr_err() [all …]
|