Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/bc/src/
H A Dlex.c169 bc_vec_push(&l->str, &c); in bc_lex_num()
181 bc_vec_push(&l->str, &start); in bc_lex_number()
199 bc_vec_push(&l->str, &c); in bc_lex_number()
205 bc_vec_push(&l->str, &c); in bc_lex_number()
H A Dprogram.c213 bc_vec_push(&p->results, &res); in bc_program_pushBigdig()
745 bc_vec_push(&p->stack, &ip); in bc_program_read()
1225 bc_vec_push(vec, &r.d); in bc_program_copyToVar()
1247 bc_vec_push(vec, &r.d); in bc_program_copyToVar()
1491 bc_vec_push(&p->results, &r); in bc_program_pushVar()
1509 bc_vec_push(&p->results, &r); in bc_program_pushVar()
1533 bc_vec_push(&p->results, &r); in bc_program_pushArray()
1549 bc_vec_push(&p->results, &r); in bc_program_pushArray()
1705 bc_vec_push(&p->stack, &ip); in bc_program_call()
2376 bc_vec_push(&p->stack, &ip); in bc_program_execStr()
[all …]
H A Dargs.c289 bc_vec_push(&vm.files, argv + i); in bc_args()
H A Dbc_parse.c177 bc_vec_push(&p->func->labels, &idx); in bc_parse_createLabel()
188 bc_vec_push(&p->conds, &idx); in bc_parse_createCondLabel()
215 bc_vec_push(&p->exits, &ip); in bc_parse_createExitLabel()
262 bc_vec_push(&p->ops, &type); in bc_parse_operator()
752 if (type != BC_LEX_OP_MINUS) bc_vec_push(&p->ops, &type); in bc_parse_minus()
1011 bc_vec_push(&p->flags, &flags); in bc_parse_startBody()
1998 bc_vec_push(&p->ops, &t); in bc_parse_expr_err()
H A Ddc_lex.c129 if (depth) bc_vec_push(&l->str, &c); in dc_lex_string()
H A Dparse.c233 bc_vec_push(&p->flags, &flag); in bc_parse_init()
H A Dvector.c172 inline void bc_vec_push(BcVec *restrict v, const void *data) { in bc_vec_push() function
228 if (idx == v->len) bc_vec_push(v, data); in bc_vec_pushAt()
H A Dlang.c88 bc_vec_push(&f->autos, &a); in bc_func_insert()
H A Dvm.c421 bc_vec_push(&vm.env_args, &env_args_name);
445 bc_vec_push(&vm.env_args, &buf);
472 bc_vec_push(&vm.env_args, &buf);
H A Dlibrary.c132 bc_vec_push(&vm.ctxts, &ctxt); in bcl_pushContext()
313 bc_vec_push(&ctxt->nums, n); in bcl_num_insert()
358 bc_vec_push(&ctxt->free_nums, &n); in bcl_num_dtor()
H A Dhistory.c1331 bc_vec_push(&h->history, &line); in bc_history_add()
1355 bc_vec_push(&h->history, &line); in bc_history_add_empty()
H A Dnum.c2862 bc_vec_push(&stack, &dig); in bc_num_printNum()
/freebsd-13.1/contrib/bc/include/
H A Dstatus.h664 bc_vec_push(&vm.jmp_bufs, &sjb); \
683 bc_vec_push(&vm.jmp_bufs, &sjb); \
H A Dvector.h191 void bc_vec_push(BcVec *restrict v, const void *data);