Searched refs:BcResult (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12-stable/contrib/bc/src/ |
| D | program.c | 67 static inline void bc_program_type_num(BcResult *r, BcNum *n) { in bc_program_type_num() 86 static void bc_program_type_match(BcResult *r, BcType t) { in bc_program_type_match() 203 BcResult res; in bc_program_pushBigdig() 286 static BcNum* bc_program_num(BcProgram *p, BcResult *r) { in bc_program_num() 408 static void bc_program_operand(BcProgram *p, BcResult **r, in bc_program_operand() 434 static void bc_program_binPrep(BcProgram *p, BcResult **l, BcNum **ln, in bc_program_binPrep() 435 BcResult **r, BcNum **rn, size_t idx) in bc_program_binPrep() 487 static void bc_program_binOpPrep(BcProgram *p, BcResult **l, BcNum **ln, in bc_program_binOpPrep() 488 BcResult **r, BcNum **rn, size_t idx) in bc_program_binOpPrep() 507 static void bc_program_assignPrep(BcProgram *p, BcResult **l, BcNum **ln, in bc_program_assignPrep() [all …]
|
| D | lang.c | 243 void bc_result_clear(BcResult *r) { in bc_result_clear() 249 void bc_result_copy(BcResult *d, BcResult *src) { in bc_result_copy() 310 BcResult *r = (BcResult*) result; in bc_result_free()
|
| D | vm.c | 768 BcResult *r = (BcResult*) bc_vec_item(&vm.prog.results, i);
|
| /freebsd-12-stable/contrib/bc/include/ |
| D | lang.h | 476 typedef struct BcResult { struct 484 } BcResult; typedef 614 void bc_result_clear(BcResult *r); 623 void bc_result_copy(BcResult *d, BcResult *src);
|
| D | program.h | 266 typedef void (*BcProgramUnary)(BcResult *r, BcNum *n); 357 void bc_program_negate(BcResult *r, BcNum *n); 364 void bc_program_not(BcResult *r, BcNum *n); 373 void bc_program_trunc(BcResult *r, BcNum *n);
|