| 1544 | } |
| 1545 | |
| 1546 | txBigInt *fxBigInt_mul(txMachine* the, txBigInt *rr, txBigInt *aa, txBigInt *bb) |
| 1547 | { |
| 1548 | rr = fxBigInt_umul(the, rr, aa, bb); |
| 1549 | if ((aa->sign != bb->sign) && !fxBigInt_iszero(rr)) |
| 1550 | rr->sign = 1; |
| 1551 | mxBigInt_meter(rr->size); |
| 1552 | return(rr); |
| 1553 | } |
| 1554 | |
| 1555 | txBigInt *fxBigInt_umul(txMachine* the, txBigInt *rr, txBigInt *aa, txBigInt *bb) |
| 1556 | { |
no test coverage detected