| 989 | } |
| 990 | |
| 991 | int |
| 992 | fxBigInt_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 | |
| 1002 | txBigInt *fxBigInt_fit(txMachine* the, txBigInt *r) |
| 1003 | { |
no outgoing calls
no test coverage detected