Home
last modified time | relevance | path

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

/external/bc/src/
Dbc_parse.c181 flags |= (BC_PARSE_ARRAY | BC_PARSE_NEEDVAL); in bc_parse_params()
260 BC_PARSE_NEEDVAL; in bc_parse_name()
322 flags |= BC_PARSE_NEEDVAL; in bc_parse_builtin()
351 flags |= BC_PARSE_NEEDVAL; in bc_parse_scale()
461 bc_parse_expr_status(p, BC_PARSE_NEEDVAL, bc_parse_next_print); in bc_parse_print()
500 s = bc_parse_expr_err(p, BC_PARSE_NEEDVAL, bc_parse_next_expr); in bc_parse_return()
620 uint8_t flags = (BC_PARSE_REL | BC_PARSE_NEEDVAL); in bc_parse_if()
662 uint8_t flags = (BC_PARSE_REL | BC_PARSE_NEEDVAL); in bc_parse_while()
708 uint8_t flags = (BC_PARSE_REL | BC_PARSE_NEEDVAL); in bc_parse_for()
1179 assert(!(flags & BC_PARSE_PRINT) || !(flags & BC_PARSE_NEEDVAL)); in bc_parse_expr_err()
[all …]
Dprogram.c465 vm.expr(&parse, BC_PARSE_NOREAD | BC_PARSE_NEEDVAL); in bc_program_read()
/external/bc/include/
Dparse.h53 #define BC_PARSE_NEEDVAL (UINTMAX_C(1)<<5) macro