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

Function fxBigInt_copy

xs/sources/xsBigInt.c:977–982  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

975}
976
977void fxBigInt_copy(txBigInt *a, txBigInt *b)
978{
979 c_memmove(a->data, b->data, b->size * sizeof(txU4));
980 a->size = b->size;
981 a->sign = b->sign;
982}
983
984txBigInt *fxBigInt_dup(txMachine* the, txBigInt *a)
985{

Callers 15

fxBigInt_mod_addFunction · 0.85
fxBigInt_mod_dblFunction · 0.85
fxBigInt_mod_subFunction · 0.85
fxBigInt_mod_exp_LRFunction · 0.85
mont_reductionFunction · 0.85
mont_mulFunction · 0.85
fxBigInt_mont_exp_SWFunction · 0.85
ec_doubleFunction · 0.85
ec_addFunction · 0.85
fxBigInt_ec_mulFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected