Searched refs:BcNumBinaryOp (Results 1 – 5 of 5) sorted by relevance
/external/bc/include/ |
D | num.h | 363 typedef void (*BcNumBinaryOp)(BcNum* a, BcNum* b, BcNum* c, size_t scale); typedef
|
D | program.h | 443 extern const BcNumBinaryOp bc_program_ops[];
|
/external/bc/src/ |
D | data.c | 1318 const BcNumBinaryOp bc_program_ops[] = {
|
D | library.c | 891 bcl_binary(BclNumber a, BclNumber b, const BcNumBinaryOp op, in bcl_binary()
|
/external/toybox/toys/pending/ |
D | bc.c | 167 typedef BcStatus (*BcNumBinaryOp)(BcNum*, BcNum*, BcNum*, size_t); typedef 778 BcNumBinaryOp bc_program_ops[] = { 1799 BcNumBinaryOp op, size_t req) in bc_num_binary() 2181 BcNumBinaryOp op = (!a->neg == !b->neg) ? bc_num_a : bc_num_s; in bc_num_add() 2186 BcNumBinaryOp op = (!a->neg == !b->neg) ? bc_num_s : bc_num_a; in bc_num_sub()
|