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

Function fxBigInt_ffs

xs/sources/xsBigInt.c:991–1000  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

989}
990
991int
992fxBigInt_ffs(txBigInt *a)
993{
994 int i;
995 txU4 w = a->data[a->size - 1];
996
997 for (i = 0; i < (int)mxBigIntWordSize && !(w & ((txU4)1 << (mxBigIntWordSize - 1 - i))); i++)
998 ;
999 return(i);
1000}
1001
1002txBigInt *fxBigInt_fit(txMachine* the, txBigInt *r)
1003{

Callers 2

fxBigInt_bitsizeFunction · 0.85
fxBigInt_udivFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected