MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxBigInt_mul

Function fxBigInt_mul

xs/sources/xsBigInt.c:1546–1553  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1544}
1545
1546txBigInt *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
1555txBigInt *fxBigInt_umul(txMachine* the, txBigInt *rr, txBigInt *aa, txBigInt *bb)
1556{

Callers 2

fxBigInt_mod_mulFunction · 0.85

Calls 2

fxBigInt_umulFunction · 0.85
fxBigInt_iszeroFunction · 0.85

Tested by

no test coverage detected