Lines Matching refs:BcResult
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()
508 BcResult **r, BcNum **rn) in bc_program_assignPrep()
543 static void bc_program_prep(BcProgram *p, BcResult **r, BcNum **n, size_t idx) { in bc_program_prep()
568 static BcResult* bc_program_prepResult(BcProgram *p) { in bc_program_prepResult()
570 BcResult *res = bc_vec_pushEmpty(&p->results); in bc_program_prepResult()
590 BcResult *r = bc_program_prepResult(p); in bc_program_const()
624 BcResult *opd1, *opd2, *res; in bc_program_op()
772 BcResult *r = bc_vec_top(&p->results); in bc_program_rand()
858 BcResult *r; in bc_program_print()
928 void bc_program_negate(BcResult *r, BcNum *n) { in bc_program_negate()
933 void bc_program_not(BcResult *r, BcNum *n) { in bc_program_not()
938 void bc_program_trunc(BcResult *r, BcNum *n) { in bc_program_trunc()
951 BcResult *res, *ptr; in bc_program_unary()
976 BcResult *opd1, *opd2, *res; in bc_program_logical()
1099 BcResult *ptr = NULL, r; in bc_program_copyToVar()
1246 BcResult *left, *right, res; in bc_program_assign()
1440 BcResult r; in bc_program_pushVar()
1508 BcResult r, *operand; in bc_program_pushArray()
1550 BcResult *ptr, res, copy; in bc_program_incdec()
1607 BcResult *arg; in bc_program_call()
1703 BcResult *res; in bc_program_return()
1731 BcResult *operand; in bc_program_return()
1791 BcResult *opd, *res; in bc_program_builtin()
1914 BcResult *opd1, *opd2, *res, *res2; in bc_program_divmod()
1951 BcResult *r1, *r2, *r3, *res; in bc_program_modexp()
2041 BcResult *r, res; in bc_program_asciify()
2092 BcResult *r; in bc_program_printStream()
2148 BcResult *opnd; in bc_program_nquit()
2220 BcResult *r; in bc_program_execStr()
2430 BcResult *res; in bc_program_pushSeed()
2602 bc_vec_init(&p->results, sizeof(BcResult), BC_DTOR_RESULT); in bc_program_init()
2651 BcResult r, *ptr; in bc_program_exec()
3039 BcResult *ptr2; in bc_program_exec()
3052 memcpy(&r, ptr, sizeof(BcResult)); in bc_program_exec()
3053 memcpy(ptr, ptr2, sizeof(BcResult)); in bc_program_exec()
3054 memcpy(ptr2, &r, sizeof(BcResult)); in bc_program_exec()