Searched refs:bc_vec_push (Results 1 – 15 of 15) sorted by relevance
/external/bc/src/ |
D | lex.c | 199 bc_vec_push(&l->str, &c); in bc_lex_num() 212 bc_vec_push(&l->str, &start); in bc_lex_number() 230 bc_vec_push(&l->str, &c); in bc_lex_number() 237 bc_vec_push(&l->str, &c); in bc_lex_number()
|
D | program.c | 134 bc_vec_push(p->globals_v + i, p->globals + i); in bc_program_prepGlobals() 215 bc_vec_push(&p->results, &res); in bc_program_pushBigdig() 818 bc_vec_push(&p->stack, &ip); in bc_program_read() 825 bc_vec_push(&p->tail_calls, &temp); in bc_program_read() 1311 bc_vec_push(vec, &r.d); in bc_program_copyToVar() 1335 bc_vec_push(vec, &r.d); in bc_program_copyToVar() 1484 bc_vec_push(&p->results, &res); in bc_program_assign() 1573 bc_vec_push(&p->results, &res); in bc_program_assign() 1636 bc_vec_push(&p->results, &r); in bc_program_pushVar() 1656 bc_vec_push(&p->results, &r); in bc_program_pushVar() [all …]
|
D | bc_parse.c | 194 bc_vec_push(&p->func->labels, &idx); in bc_parse_createLabel() 207 bc_vec_push(&p->conds, &idx); in bc_parse_createCondLabel() 235 bc_vec_push(&p->exits, &ip); in bc_parse_createExitLabel() 287 bc_vec_push(&p->ops, &type); in bc_parse_operator() 805 if (type != BC_LEX_OP_MINUS) bc_vec_push(&p->ops, &type); in bc_parse_minus() 1086 bc_vec_push(&p->flags, &flags); in bc_parse_startBody() 2204 bc_vec_push(&p->ops, &t); in bc_parse_expr_err()
|
D | dc_lex.c | 141 if (depth) bc_vec_push(&l->str, &c); in dc_lex_string()
|
D | args.c | 384 bc_vec_push(&vm->files, argv + i); in bc_args()
|
D | parse.c | 265 bc_vec_push(&p->flags, &flag); in bc_parse_init()
|
D | lang.c | 89 bc_vec_push(&f->autos, &a); in bc_func_insert()
|
D | vector.c | 202 bc_vec_push(BcVec* restrict v, const void* data) in bc_vec_push() function 267 if (idx == v->len) bc_vec_push(v, data); in bc_vec_pushAt()
|
D | vm.c | 561 bc_vec_push(&vm->env_args, &env_args_name); 586 bc_vec_push(&vm->env_args, &buf); 613 bc_vec_push(&vm->env_args, &buf);
|
D | library.c | 253 bc_vec_push(&vm->ctxts, &ctxt); in bcl_pushContext() 538 bc_vec_push(&ctxt->nums, n); in bcl_num_insert() 583 bc_vec_push(&ctxt->free_nums, &n); in bcl_num_dtor()
|
D | history.c | 1729 bc_vec_push(&h->history, &line); in bc_history_add() 1754 bc_vec_push(&h->history, &line); in bc_history_add_empty()
|
D | num.c | 3238 bc_vec_push(&stack, &dig); in bc_num_printNum()
|
/external/toybox/toys/pending/ |
D | bc.c | 989 void bc_vec_push(BcVec *v, void *data) { in bc_vec_push() function 994 bc_vec_push(v, &data); in bc_vec_pushByte() 1007 bc_vec_push(v, &amt); in bc_vec_pushIndex() 1013 if (idx == v->len) bc_vec_push(v, data); in bc_vec_pushAt() 1089 if (*i == v->len) bc_vec_push(v, ptr); in bc_map_insert() 1151 bc_vec_push(vec, &c); in bc_read_chars() 2070 bc_vec_push(&stack, &dig); in bc_num_printNum() 2440 bc_vec_push(&f->autos, &a); in bc_func_insert() 2501 bc_vec_push(a, &n); in bc_array_expand() 2508 bc_vec_push(a, &v); in bc_array_expand() [all …]
|
/external/bc/include/ |
D | status.h | 827 bc_vec_push(&vm->jmp_bufs, &sjb); \ 897 bc_vec_push(&vm->jmp_bufs, &sjb); \
|
D | vector.h | 194 bc_vec_push(BcVec* restrict v, const void* data);
|