Searched refs:bc_vec_string (Results 1 – 7 of 7) sorted by relevance
/external/bc/include/ |
D | vector.h | 72 void bc_vec_string(BcVec *restrict v, size_t len, const char *restrict str);
|
/external/bc/src/history/ |
D | history.c | 606 bc_vec_string(&h->tmp, strlen(seq), seq); in bc_history_refresh() 790 bc_vec_string(&h->buf, strlen(str), str); in bc_history_edit_next() 1221 bc_vec_string(&h->buf, 0, ""); in bc_history_edit() 1319 bc_vec_string(vec, BC_HIST_BUF_LEN(h), h->buf.v); in bc_history_line()
|
/external/bc/src/bc/ |
D | lex.c | 96 bc_vec_string(&l->str, len, l->buf + l->i); in bc_lex_string()
|
D | parse.c | 794 bc_vec_string(&p->l.str, strlen(bc_parse_const1), bc_parse_const1); in bc_parse_for() 918 bc_vec_string(&p->buf, p->l.str.len, p->l.str.v); in bc_parse_func() 978 bc_vec_string(&p->buf, p->l.str.len - 1, p->l.str.v); in bc_parse_auto()
|
/external/bc/src/ |
D | lex.c | 187 bc_vec_string(&l->str, i, buf); in bc_lex_name()
|
D | vector.c | 134 void bc_vec_string(BcVec *restrict v, size_t len, const char *restrict str) { in bc_vec_string() function
|
/external/toybox/toys/pending/ |
D | bc.c | 940 void bc_vec_string(BcVec *v, size_t len, char *str) { in bc_vec_string() function 2565 bc_vec_string(&l->str, i, buf); in bc_lex_name() 2666 bc_vec_string(&l->str, len, l->buf + l->i); in bc_lex_string() 3744 bc_vec_string(&p->l.str, strlen(bc_parse_const1), bc_parse_const1); in bc_parse_for()
|