| 1048 | */ |
| 1049 | |
| 1050 | txBigInt *fxBigInt_not(txMachine* the, txBigInt *r, txBigInt *a) |
| 1051 | { |
| 1052 | if (a->sign) |
| 1053 | r = fxBigInt_usub(the, r, a, (txBigInt *)&gxBigIntOne); |
| 1054 | else { |
| 1055 | r = fxBigInt_uadd(the, r, a, (txBigInt *)&gxBigIntOne); |
| 1056 | r->sign = 1; |
| 1057 | } |
| 1058 | return(r); |
| 1059 | } |
| 1060 | |
| 1061 | txBigInt *fxBigInt_and(txMachine* the, txBigInt *r, txBigInt *a, txBigInt *b) |
| 1062 | { |
nothing calls this directly
no test coverage detected