Home
last modified time | relevance | path

Searched refs:bc_vec_pushByte (Results 1 – 11 of 11) sorted by relevance

/external/bc/src/
Ddc_lex.c81 bc_vec_pushByte(&l->str, (uchar) l->buf[l->i - 1]); in dc_lex_register()
82 bc_vec_pushByte(&l->str, '\0'); in dc_lex_register()
145 bc_vec_pushByte(&l->str, '\0'); in dc_lex_string()
Dread.c144 bc_vec_pushByte(vec, '\0'); in bc_read_chars()
195 bc_vec_pushByte(vec, '\0'); in bc_read_chars()
208 bc_vec_pushByte(vec, '\0'); in bc_read_chars()
Dvector.c196 inline void bc_vec_pushByte(BcVec *restrict v, uchar data) { in bc_vec_pushByte() function
262 bc_vec_pushByte(v, '\0'); in bc_vec_string()
296 bc_vec_pushByte(v, '\0'); in bc_vec_empty()
Dlex.c220 bc_vec_pushByte(&l->str, '\0'); in bc_lex_number()
Dhistory.c799 bc_vec_pushByte(&h->buf, '\0'); in bc_history_edit_insert()
1358 bc_vec_pushByte(&h->buf, '\0'); in bc_history_printCtrl()
1519 bc_vec_pushByte(&h->buf, '\0'); in bc_history_edit()
Dvm.c678 bc_vec_pushByte(&vm.out, (uchar) c);
1188 bc_vec_pushByte(&buf, '\0');
Dprogram.c730 bc_vec_pushByte(&f->code, vm.read_ret); in bc_program_read()
2643 bc_vec_pushByte(&func->code, BC_INST_INVALID); in bc_program_exec()
Dlibrary.c958 bc_vec_pushByte(&vm.out, '\0'); in bcl_string()
/external/bc/include/
Dparse.h109 #define bc_parse_push(p, i) (bc_vec_pushByte(&(p)->func->code, (uchar) (i)))
Dvector.h216 void bc_vec_pushByte(BcVec *restrict v, uchar data);
/external/toybox/toys/pending/
Dbc.c430 #define bc_parse_push(p, i) (bc_vec_pushByte(&(p)->func->code, i))
911 void bc_vec_pushByte(BcVec *v, uchar data) { in bc_vec_pushByte() function
952 bc_vec_pushByte(v, '\0'); in bc_vec_string()
958 if (!v->len) bc_vec_pushByte(v, '\0'); in bc_vec_concat()
968 bc_vec_pushByte(v, '\0'); in bc_vec_empty()
1064 bc_vec_pushByte(vec, '\0'); in bc_read_chars()
1072 bc_vec_pushByte(vec, '\0'); in bc_read_chars()
2551 bc_vec_pushByte(&l->str, '\0'); in bc_lex_number()
4785 bc_vec_pushByte(&f->code, BC_INST_RET); in bc_program_read()
5748 bc_vec_pushByte(&buffer, '\0'); in bc_vm_stdin()