Home
last modified time | relevance | path

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

/external/bc/include/
Dbc.h98 #define BC_PARSE_FLAG_IF (UINTMAX_C(1)<<6) macro
99 #define BC_PARSE_IF(p) (BC_PARSE_TOP_FLAG(p) & BC_PARSE_FLAG_IF)
/external/bc/src/
Dbc_parse.c83 good = ((flags & BC_PARSE_FLAG_IF) != 0); in bc_parse_isDelimiter()
602 !(flags & (BC_PARSE_FLAG_IF | BC_PARSE_FLAG_ELSE)) && in bc_parse_endBody()
638 bc_parse_startBody(p, BC_PARSE_FLAG_IF); in bc_parse_if()
/external/toybox/toys/pending/
Dbc.c497 #define BC_PARSE_FLAG_IF (1<<6) macro
498 #define BC_PARSE_IF(p) (BC_PARSE_TOP_FLAG(p) & BC_PARSE_FLAG_IF)
3077 good = ((flags & BC_PARSE_FLAG_IF) != 0); in bc_parse_isDelimiter()
3611 !(flags & (BC_PARSE_FLAG_IF | BC_PARSE_FLAG_ELSE)) && in bc_parse_endBody()
3656 bc_parse_startBody(p, BC_PARSE_FLAG_IF); in bc_parse_if()