Home
last modified time | relevance | path

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

/external/bc/include/
Dvector.h67 void bc_vec_npop(BcVec *restrict v, size_t n);
93 #define bc_vec_pop(v) (bc_vec_npop((v), 1))
94 #define bc_vec_popAll(v) (bc_vec_npop((v), (v)->len))
/external/toybox/toys/pending/
Dbc.c139 #define bc_vec_pop(v) (bc_vec_npop((v), 1))
888 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()
2372 bc_vec_npop(&f->consts, f->consts.len); in bc_func_reset()
2373 bc_vec_npop(&f->autos, f->autos.len); in bc_func_reset()
[all …]
/external/bc/src/
Dprogram.c111 bc_vec_npop(v, reset ? v->len - 1 : 1); in bc_program_popGlobals()
741 bc_vec_npop(&p->results, 1 + !push); in bc_program_assignStr()
870 bc_vec_npop(&p->results, 2); in bc_program_assign()
940 bc_vec_npop(&p->results, 2); in bc_program_assign()
943 else bc_vec_npop(&p->results, 2); in bc_program_assign()
1479 bc_vec_npop(&p->stack, i); in bc_program_nquit()
1480 bc_vec_npop(&p->tail_calls, i); in bc_program_nquit()
1801 bc_vec_npop(&p->stack, p->stack.len - 1); in bc_program_reset()
1809 bc_vec_npop(&f->code, f->code.len); in bc_program_reset()
Dparse.c161 bc_vec_npop(&p->flags, p->flags.len - 1); in bc_parse_reset()
Dvector.c86 void bc_vec_npop(BcVec *restrict v, size_t n) { in bc_vec_npop() function
Drand.c408 bc_vec_npop(&r->v, reset ? r->v.len - 1 : 1); in bc_rand_pop()
Dhistory.c1109 bc_vec_npop(&h->buf, sizeof(str)); in bc_history_printCtrl()
1247 bc_vec_npop(&h->buf, h->buf.len - h->pos); in bc_history_edit()
/external/bc/
DNEWS.md356 `bc_vec_npop(v, 2)`. They also included an extra function call for checking the