Searched refs:BcType (Results 1 – 5 of 5) sorted by relevance
/external/bc/include/ |
D | lang.h | 291 typedef enum BcType { enum 297 } BcType; typedef 303 BcType type, size_t line);
|
/external/bc/src/ |
D | lang.c | 67 BcType type, size_t line) in bc_func_insert() 78 if (BC_ERR(idx == id->loc && type == (BcType) id->idx)) { in bc_func_insert()
|
D | program.c | 68 static void bc_program_type_match(BcResult *r, BcType t) { in bc_program_type_match() 175 static inline BcVec* bc_program_vec(const BcProgram *p, size_t idx, BcType type) in bc_program_vec() 207 BcType type = (r->t == BC_RESULT_VAR) ? BC_TYPE_VAR : BC_TYPE_ARRAY; in bc_program_num() 747 BcType t, bool last) in bc_program_copyToVar() 1110 bc_program_copyToVar(p, a->loc, (BcType) a->idx, last); in bc_program_call() 1118 v = bc_program_vec(p, a->loc, (BcType) a->idx); in bc_program_call() 1172 BcVec *v = bc_program_vec(p, a->loc, (BcType) a->idx); in bc_program_return()
|
D | bc_parse.c | 817 BcType t = BC_TYPE_VAR; in bc_parse_func() 878 BcType t; in bc_parse_auto()
|
/external/toybox/toys/pending/ |
D | bc.c | 313 typedef enum BcType { enum 316 } BcType; typedef 2339 BcStatus bc_func_insert(BcFunc *f, char *name, BcType type, size_t line) { in bc_func_insert() 2346 if (!strcmp(name, id->str) && type == (BcType) id->len) in bc_func_insert() 3849 BcType t = BC_TYPE_VAR; in bc_parse_func() 3917 BcType t; in bc_parse_auto() 4466 static BcStatus bc_program_type_match(BcResult *r, BcType t) { in bc_program_type_match() 4516 static BcVec* bc_program_search(BcProgram *p, char *id, BcType type) { in bc_program_search() 4581 BcType type = (r->t == BC_RESULT_VAR) ? BC_TYPE_VAR : BC_TYPE_ARRAY; in bc_program_num() 4962 BcType t, int last) in bc_program_copyToVar()
|