/external/bc/src/ |
D | program.c | 98 bc_vec_push(p->globals_v + i, p->globals + i); in bc_program_prepGlobals() 130 bc_vec_push(&p->results, &res); in bc_program_pushBigdig() 167 bc_vec_push(v, &data.v); in bc_program_search() 374 bc_vec_push(&p->results, &res); in bc_program_prepResult() 482 bc_vec_push(&p->stack, &ip); in bc_program_read() 487 bc_vec_push(&p->tail_calls, &temp); in bc_program_read() 742 bc_vec_push(v, &n2); in bc_program_assignStr() 831 bc_vec_push(vec, &r.d); in bc_program_copyToVar() 844 bc_vec_push(vec, &r.d); in bc_program_copyToVar() 941 bc_vec_push(&p->results, &res); in bc_program_assign() [all …]
|
D | lex.c | 123 bc_vec_push(&l->str, &c); in bc_lex_num() 134 bc_vec_push(&l->str, &start); in bc_lex_number() 148 bc_vec_push(&l->str, &c); in bc_lex_number() 153 bc_vec_push(&l->str, &c); in bc_lex_number()
|
D | parse.c | 72 bc_vec_push(strs, &str); in bc_parse_addString() 106 bc_vec_push(consts, &c); in bc_parse_addNum() 205 bc_vec_push(&p->flags, &flag); in bc_parse_init()
|
D | lang.c | 87 bc_vec_push(&f->autos, &a); in bc_func_insert() 208 bc_vec_push(a, &n); in bc_array_expand() 216 bc_vec_push(a, &v); in bc_array_expand()
|
D | args.c | 229 bc_vec_push(&vm.files, argv + i); in bc_args()
|
D | bc_parse.c | 113 bc_vec_push(&p->func->labels, &idx); in bc_parse_createLabel() 118 bc_vec_push(&p->conds, &idx); in bc_parse_createCondLabel() 131 bc_vec_push(&p->exits, &ip); in bc_parse_createExitLabel() 155 bc_vec_push(&p->ops, &type); in bc_parse_operator() 437 if (type != BC_LEX_OP_MINUS) bc_vec_push(&p->ops, &type); in bc_parse_minus() 614 bc_vec_push(&p->flags, &flags); in bc_parse_startBody() 1298 bc_vec_push(&p->ops, &t); in bc_parse_expr_err()
|
D | dc_lex.c | 92 if (depth) bc_vec_push(&l->str, &c); in dc_lex_string()
|
D | vector.c | 144 inline void bc_vec_push(BcVec *restrict v, const void *data) { in bc_vec_push() function 179 if (idx == v->len) bc_vec_push(v, data); in bc_vec_pushAt()
|
D | vm.c | 306 bc_vec_push(&vm.env_args, &env_args_name); 324 bc_vec_push(&vm.env_args, &buf); 347 bc_vec_push(&vm.env_args, &buf);
|
D | library.c | 114 bc_vec_push(&vm.ctxts, &ctxt); in bcl_pushContext() 274 bc_vec_push(&ctxt->nums, n); in bcl_num_insert() 313 bc_vec_push(&ctxt->free_nums, &n); in bcl_num_dtor()
|
D | rand.c | 404 bc_vec_push(&r->v, &rng); in bc_rand_push()
|
D | history.c | 1369 bc_vec_push(&h->history, &line); in bc_history_add() 1383 bc_vec_push(&h->history, &line); in bc_history_add_empty()
|
D | num.c | 1963 bc_vec_push(&stack, &dig); in bc_num_printNum() 2106 if (n->cap == BC_NUM_DEF_SIZE) bc_vec_push(&vm.temps, n); in bc_num_free()
|
/external/toybox/toys/pending/ |
D | bc.c | 902 void bc_vec_push(BcVec *v, void *data) { in bc_vec_push() function 907 bc_vec_push(v, &data); in bc_vec_pushByte() 920 bc_vec_push(v, &amt); in bc_vec_pushIndex() 926 if (idx == v->len) bc_vec_push(v, data); in bc_vec_pushAt() 1002 if (*i == v->len) bc_vec_push(v, ptr); in bc_map_insert() 1064 bc_vec_push(vec, &c); in bc_read_chars() 1983 bc_vec_push(&stack, &dig); in bc_num_printNum() 2353 bc_vec_push(&f->autos, &a); in bc_func_insert() 2414 bc_vec_push(a, &n); in bc_array_expand() 2421 bc_vec_push(a, &v); in bc_array_expand() [all …]
|
/external/bc/include/ |
D | vector.h | 70 void bc_vec_push(BcVec *restrict v, const void *data);
|
D | vm.h | 248 bc_vec_push(&vm.jmp_bufs, &sjb); \ 260 bc_vec_push(&vm.jmp_bufs, &sjb); \
|