Differences From Artifact [7d9045f605]:
- File libtommath/bn_mp_2expt.c — part of check-in [5c51cd4d35] at 2017-09-15 14:44:00 on branch libtommath — re-format everything through astyle. Taken from libtom/libtommath (pull request [https://github.com/libtom/libtommath/pull/85|85]) (user: jan.nijtmans size: 1217) [more...]
To Artifact [e0a90c3ed8]:
- File libtommath/bn_mp_2expt.c — part of check-in [d6e5ed84c1] at 2018-03-01 20:43:31 on branch libtommath — Lots of code cleanup, mainly [https://github.com/libtom/libtommath/pull/102|Pull request #102] (user: jan.nijtmans size: 1225) [more...]
| ︙ | |||
32 33 34 35 36 37 38 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | - + |
return res;
}
/* set the used count of where the bit will go */
a->used = (b / DIGIT_BIT) + 1;
/* put the single bit in its place */
|
| ︙ |