Home
last modified time | relevance | path

Searched refs:bc_vec_npop (Results 1 – 8 of 8) sorted by relevance

/dports/math/gh-bc/bc-5.2.1/include/
H A Dvector.h173 void bc_vec_npop(BcVec *restrict v, size_t n);
345 #define bc_vec_pop(v) (bc_vec_npop((v), 1))
351 #define bc_vec_popAll(v) (bc_vec_npop((v), (v)->len))
/dports/sysutils/toybox/toybox-0.8.5/toys/pending/
H A Dbc.c888 void bc_vec_npop(BcVec *v, size_t n) { in bc_vec_npop() function
942 bc_vec_npop(v, v->len); in bc_vec_string()
962 bc_vec_npop(v, v->len); in bc_vec_empty()
976 bc_vec_npop(v, v->len); in bc_vec_free()
1030 bc_vec_npop(vec, vec->len); in bc_read_chars()
2370 bc_vec_npop(&f->code, f->code.len); in bc_func_reset()
2371 bc_vec_npop(&f->strs, f->strs.len); in bc_func_reset()
2398 bc_vec_npop(d, d->len); in bc_array_copy()
2514 bc_vec_npop(&l->str, l->str.len); in bc_lex_number()
3020 bc_vec_npop(&p->ops, p->ops.len); in bc_parse_reset()
[all …]
/dports/math/gh-bc/bc-5.2.1/src/
H A Dprogram.c160 bc_vec_npop(v, reset ? v->len - 1 : 1); in bc_program_popGlobals()
1091 bc_vec_npop(&p->results, 1 + !push); in bc_program_assignStr()
1291 bc_vec_npop(&p->results, 2); in bc_program_assign()
1433 bc_vec_npop(&p->results, 2); in bc_program_assign()
1436 else bc_vec_npop(&p->results, 2); in bc_program_assign()
2207 bc_vec_npop(&p->stack, i); in bc_program_nquit()
2208 bc_vec_npop(&p->tail_calls, i); in bc_program_nquit()
2647 bc_vec_npop(&p->stack, p->stack.len - 1); in bc_program_reset()
2657 bc_vec_npop(&f->code, f->code.len); in bc_program_reset()
H A Dparse.c183 bc_vec_npop(&p->flags, p->flags.len - 1); in bc_parse_reset()
H A Dvector.c100 void bc_vec_npop(BcVec *restrict v, size_t n) { in bc_vec_npop() function
560 if (v->len > 1) bc_vec_npop(v, v->len - 1); in bc_slabvec_clear()
H A Drand.c570 bc_vec_npop(&r->v, reset ? r->v.len - 1 : 1); in bc_rand_pop()
H A Dhistory.c1398 bc_vec_npop(&h->buf, sizeof(str)); in bc_history_printCtrl()
1568 bc_vec_npop(&h->buf, h->buf.len - h->pos); in bc_history_edit()
/dports/math/gh-bc/bc-5.2.1/
H A DNEWS.md491 `bc_vec_npop(v, 2)`. They also included an extra function call for checking the