Home
last modified time | relevance | path

Searched refs:BcStatus (Results 1 – 10 of 10) sorted by relevance

/external/toybox/toys/pending/
Dbc.c50 typedef enum BcStatus { enum
59 } BcStatus; typedef
162 typedef BcStatus (*BcNumBinaryOp)(BcNum*, BcNum*, BcNum*, size_t);
173 BcStatus bc_num_ulong(BcNum *n, unsigned long *result);
176 BcStatus bc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale);
177 BcStatus bc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale);
178 BcStatus bc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale);
179 BcStatus bc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale);
180 BcStatus bc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale);
181 BcStatus bc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale);
[all …]
/external/bc/include/
Dread.h55 BcStatus bc_read_line(BcVec *vec, const char *prompt);
57 BcStatus bc_read_chars(BcVec *vec, const char *prompt);
Dstatus.h61 typedef enum BcStatus { enum
71 } BcStatus; typedef
Dfile.h75 BcStatus bc_file_flushErr(BcFile *restrict f, BcFlushType type);
Dhistory.h240 BcStatus bc_history_line(BcHistory *h, BcVec *vec, const char *prompt);
/external/bc/src/
Dfile.c66 static BcStatus bc_file_output(int fd, const char *buf, size_t n) { in bc_file_output()
88 BcStatus bc_file_flushErr(BcFile *restrict f, BcFlushType type) in bc_file_flushErr()
90 BcStatus s; in bc_file_flushErr()
124 BcStatus s = bc_file_flushErr(f, type); in bc_file_flush()
Dread.c108 BcStatus bc_read_chars(BcVec *vec, const char *prompt) { in bc_read_chars()
185 BcStatus bc_read_line(BcVec *vec, const char *prompt) { in bc_read_line()
187 BcStatus s; in bc_read_line()
Dhistory.c346 static BcStatus bc_history_readCode(char *buf, size_t buf_len, in bc_history_readCode()
1123 static BcStatus bc_history_edit(BcHistory *h, const char *prompt) { in bc_history_edit()
1146 BcStatus s; in bc_history_edit()
1305 static BcStatus bc_history_raw(BcHistory *h, const char *prompt) { in bc_history_raw()
1307 BcStatus s; in bc_history_raw()
1324 BcStatus bc_history_line(BcHistory *h, BcVec *vec, const char *prompt) { in bc_history_line()
1326 BcStatus s; in bc_history_line()
Dvm.c198 BcStatus s;
651 BcStatus s;
Dprogram.c432 BcStatus s; in bc_program_read()