Differences From Artifact [399148fc5e]:
- File libtommath/bn_mp_2expt.c — part of check-in [18372c0c7e] at 2017-08-29 19:52:35 on branch libtommath — libtommath 1.0.1 rc 2 (user: jan.nijtmans size: 1278) [more...]
To Artifact [ec325f3e16]:
- File libtommath/bn_mp_2expt.c — part of check-in [bbc944c5d3] at 2017-08-29 20:39:15 on branch libtommath — libtommath 1.0.1 (user: jan.nijtmans size: 1259) [more...]
| ︙ | |||
39 40 41 42 43 44 45 | 39 40 41 42 43 44 45 46 47 48 | - - - + + + | /* put the single bit in its place */ a->dp[b / DIGIT_BIT] = ((mp_digit)1) << (b % DIGIT_BIT); return MP_OKAY; } #endif |