Searched refs:bc_vec_push (Results 1 – 14 of 14) sorted by relevance
/external/bc/src/ |
D | program.c | 116 bc_vec_push(p->globals_v + i, p->globals + i); in bc_program_prepGlobals() 155 bc_vec_push(v, &data.v); in bc_program_search() 379 bc_vec_push(&p->results, r); in bc_program_binOpRetire() 401 bc_vec_push(&p->results, r); in bc_program_retire() 475 bc_vec_push(&p->stack, &ip); in bc_program_read() 479 bc_vec_push(&p->tail_calls, &temp); in bc_program_read() 720 bc_vec_push(v, &n2); in bc_program_assignStr() 800 bc_vec_push(vec, &r.d); in bc_program_copyToVar() 812 bc_vec_push(vec, &r.d); in bc_program_copyToVar() 943 bc_vec_push(&p->results, &r); in bc_program_pushVar() [all …]
|
D | lex.c | 126 bc_vec_push(&l->str, &c); in bc_lex_num() 137 bc_vec_push(&l->str, &start); in bc_lex_number() 154 bc_vec_push(&l->str, &c); in bc_lex_number() 159 bc_vec_push(&l->str, &c); in bc_lex_number()
|
D | vector.c | 90 void bc_vec_push(BcVec *restrict v, const void *data) { in bc_vec_push() function 96 bc_vec_push(v, &data); in bc_vec_pushByte() 112 bc_vec_push(v, &amt); in bc_vec_pushIndex() 120 if (idx == v->len) bc_vec_push(v, data); in bc_vec_pushAt() 238 if (*i == v->len) bc_vec_push(v, ptr); in bc_map_insert()
|
D | parse.c | 81 bc_vec_push(v, &c); in bc_parse_addId() 86 bc_vec_push(v, &str); in bc_parse_addId() 178 bc_vec_push(&p->flags, &flag); in bc_parse_init()
|
D | lang.c | 88 bc_vec_push(&f->autos, &a); in bc_func_insert() 172 bc_vec_push(a, &n); in bc_array_expand() 180 bc_vec_push(a, &v); in bc_array_expand()
|
D | read.c | 112 bc_vec_push(vec, &c); in bc_read_chars()
|
D | args.c | 227 for (i = optind; i < argc; ++i) bc_vec_push(&vm->files, argv + i); in bc_args()
|
D | vm.c | 177 bc_vec_push(&v, &env_args_name); in bc_vm_envArgs() 183 bc_vec_push(&v, &buf); in bc_vm_envArgs() 197 bc_vec_push(&v, &buf); in bc_vm_envArgs()
|
D | num.c | 1879 bc_vec_push(&stack, &dig); in bc_num_printNum()
|
/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 | 68 void bc_vec_push(BcVec *restrict v, const void *data);
|
/external/bc/src/dc/ |
D | lex.c | 96 if (depth) bc_vec_push(&l->str, &c); in dc_lex_string()
|
/external/bc/src/bc/ |
D | parse.c | 112 bc_vec_push(&p->func->labels, &idx); in bc_parse_createLabel() 117 bc_vec_push(&p->conds, &idx); in bc_parse_createCondLabel() 130 bc_vec_push(&p->exits, &ip); in bc_parse_createExitLabel() 154 bc_vec_push(&p->ops, &type); in bc_parse_operator() 476 if (type != BC_LEX_OP_MINUS) bc_vec_push(&p->ops, &type); in bc_parse_minus() 667 bc_vec_push(&p->flags, &flags); in bc_parse_startBody() 1386 bc_vec_push(&p->ops, &t); in bc_parse_expr_err()
|
/external/bc/src/history/ |
D | history.c | 1342 bc_vec_push(&h->history, &line); in bc_history_add()
|