Home
last modified time | relevance | path

Searched refs:bc_vec_push (Results 1 – 14 of 14) sorted by relevance

/external/bc/src/
Dprogram.c116 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 …]
Dlex.c126 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()
Dvector.c90 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()
Dparse.c81 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()
Dlang.c88 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()
Dread.c112 bc_vec_push(vec, &c); in bc_read_chars()
Dargs.c227 for (i = optind; i < argc; ++i) bc_vec_push(&vm->files, argv + i); in bc_args()
Dvm.c177 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()
Dnum.c1879 bc_vec_push(&stack, &dig); in bc_num_printNum()
/external/toybox/toys/pending/
Dbc.c902 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/
Dvector.h68 void bc_vec_push(BcVec *restrict v, const void *data);
/external/bc/src/dc/
Dlex.c96 if (depth) bc_vec_push(&l->str, &c); in dc_lex_string()
/external/bc/src/bc/
Dparse.c112 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/
Dhistory.c1342 bc_vec_push(&h->history, &line); in bc_history_add()