Home
last modified time | relevance | path

Searched refs:BcLexType (Results 1 – 6 of 6) sorted by relevance

/src/contrib/bc/src/
H A Dbc_lex.c71 l->t = BC_LEX_KW_AUTO + (BcLexType) i; in bc_lex_identifier()
159 bc_lex_assign(BcLex* l, BcLexType with, BcLexType without) in bc_lex_assign()
261 l->t = (BcLexType) (c - '(' + BC_LEX_LPAREN); in bc_lex_token()
422 l->t = (BcLexType) (c - '[' + BC_LEX_LBRACKET); in bc_lex_token()
478 l->t = (BcLexType) (c - '{' + BC_LEX_LBRACE); in bc_lex_token()
H A Dbc_parse.c96 BcLexType t = p->l.t; in bc_parse_isDelimiter()
252 bc_parse_operator(BcParse* p, BcLexType type, size_t start, size_t* nexprs) in bc_parse_operator()
254 BcLexType t; in bc_parse_operator()
301 BcLexType top; in bc_parse_rightParen()
522 bc_parse_builtin(BcParse* p, BcLexType type, uint8_t flags, BcInst* prev) in bc_parse_builtin()
564 bc_parse_builtin3(BcParse* p, BcLexType type, uint8_t flags, BcInst* prev) in bc_parse_builtin3()
707 BcLexType type; in bc_parse_incdec()
710 BcLexType last = p->l.last; in bc_parse_incdec()
795 BcLexType type; in bc_parse_minus()
828 bc_parse_print(BcParse* p, BcLexType type) in bc_parse_print()
[all …]
H A Ddc_parse.c135 dc_parse_token(BcParse* p, BcLexType t, uint8_t flags) in dc_parse_token()
379 BcLexType t; in dc_parse_expr()
H A Dparse.c269 bc_vec_init(&p->ops, sizeof(BcLexType), BC_DTOR_NONE); in bc_parse_init()
/src/contrib/bc/include/
H A Dlex.h107 typedef enum BcLexType enum
489 } BcLexType; typedef
516 BcLexType t;
519 BcLexType last;
H A Dbc.h287 #define BC_PARSE_TOP_OP(p) (*((BcLexType*) bc_vec_top(&(p)->ops)))