Lines Matching defs:next
538 BcStatus bc_parse_expr_status(BcParse *p, uint8_t flags, BcParseNext next);
3051 static BcStatus bc_parse_expr_err(BcParse *p, uint8_t flags, BcParseNext next);
3403 // Because we parse the next part of the expression
3741 // Set this for the next call to bc_parse_number.
4183 static BcStatus bc_parse_expr_err(BcParse *p, uint8_t flags, BcParseNext next) {
4423 for (i = 0; i < next.len && t != next.tokens[i]; ++i);
4424 if (i == next.len && !bc_parse_isDelimiter(p))
4443 for (incdec = 1, i = 0; i < next.len && incdec; ++i)
4444 incdec = (next.tokens[i] != BC_LEX_NLINE);
4452 BcStatus bc_parse_expr_status(BcParse *p, uint8_t flags, BcParseNext next) {
4454 BcStatus s = bc_parse_expr_err(p, flags, next);