Home
last modified time | relevance | path

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

/external/bc/include/
Dbc.h172 #define BC_PARSE_FLAG_LOOP (UINTMAX_C(1) << 4) macro
173 #define BC_PARSE_LOOP(p) (BC_PARSE_TOP_FLAG(p) & BC_PARSE_FLAG_LOOP)
/external/bc/src/
Dbc_parse.c1084 flags |= (BC_PARSE_TOP_FLAG(p) & (BC_PARSE_FLAG_FUNC | BC_PARSE_FLAG_LOOP)); in bc_parse_startBody()
1224 bc_parse_startBody(p, BC_PARSE_FLAG_LOOP | BC_PARSE_FLAG_LOOP_INNER); in bc_parse_while()
1312 bc_parse_startBody(p, BC_PARSE_FLAG_LOOP | BC_PARSE_FLAG_LOOP_INNER); in bc_parse_for()
/external/toybox/toys/pending/
Dbc.c496 #define BC_PARSE_FLAG_LOOP (1<<4) macro
497 #define BC_PARSE_LOOP(p) (BC_PARSE_TOP_FLAG(p) & BC_PARSE_FLAG_LOOP)
3627 flags |= (BC_PARSE_TOP_FLAG(p) & (BC_PARSE_FLAG_FUNC | BC_PARSE_FLAG_LOOP)); in bc_parse_startBody()
3708 bc_parse_startBody(p, BC_PARSE_FLAG_LOOP | BC_PARSE_FLAG_LOOP_INNER); in bc_parse_while()
3783 if (!s) bc_parse_startBody(p, BC_PARSE_FLAG_LOOP | BC_PARSE_FLAG_LOOP_INNER); in bc_parse_for()