Searched refs:bc_vec_npop (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/bc/include/ |
| H A D | vector.h | 174 bc_vec_npop(BcVec* restrict v, size_t n); 364 #define bc_vec_pop(v) (bc_vec_npop((v), 1)) 370 #define bc_vec_popAll(v) (bc_vec_npop((v), (v)->len))
|
| /freebsd/contrib/bc/src/ |
| H A D | program.c | 159 bc_vec_npop(v, reset ? v->len - 1 : 1); in bc_program_popGlobals() 1206 bc_vec_npop(&p->results, 1 + !push); in bc_program_assignStr() 1477 bc_vec_npop(&p->results, 2); in bc_program_assign() 1586 bc_vec_npop(&p->results, 2); in bc_program_assign() 1589 else bc_vec_npop(&p->results, 2); in bc_program_assign() 2477 bc_vec_npop(&p->stack, i); in bc_program_nquit() 2478 bc_vec_npop(&p->tail_calls, i); in bc_program_nquit() 3011 bc_vec_npop(&p->stack, p->stack.len - 1); in bc_program_reset() 3015 if (BC_IS_DC) bc_vec_npop(&p->tail_calls, p->tail_calls.len - 1); in bc_program_reset() 3023 if (BC_IS_DC && BC_I) bc_vec_npop(&p->results, p->nresults); in bc_program_reset() [all …]
|
| H A D | parse.c | 212 bc_vec_npop(&p->flags, p->flags.len - 1); in bc_parse_reset()
|
| H A D | vector.c | 112 bc_vec_npop(BcVec* restrict v, size_t n) in bc_vec_npop() function 634 if (v->len > 1) bc_vec_npop(v, v->len - 1); in bc_slabvec_clear()
|
| H A D | rand.c | 621 bc_vec_npop(&r->v, reset ? r->v.len - 1 : 1); in bc_rand_pop()
|
| H A D | history.c | 1790 bc_vec_npop(&h->buf, sizeof(str)); in bc_history_printCtrl() 1966 bc_vec_npop(&h->buf, h->buf.len - h->pos); in bc_history_edit()
|
| /freebsd/contrib/bc/ |
| H A D | NEWS.md | 872 `bc_vec_npop(v, 2)`. They also included an extra function call for checking the
|