Differences From Artifact [0cb9119554]:
- File libtommath/bn_mp_mod_2d.c — part of check-in [dfaa44e279] at 2016-11-16 13:04:26 on branch libtommath — import libtommath 1.0 (user: jan.nijtmans size: 1412)
To Artifact [09bbe57a5a]:
- File libtommath/bn_mp_mod_2d.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: 1530)
| ︙ | |||
46 47 48 49 50 51 52 | 46 47 48 49 50 51 52 53 54 55 | - - - + + + |
c->dp[b / DIGIT_BIT] &=
(mp_digit) ((((mp_digit) 1) << (((mp_digit) b) % DIGIT_BIT)) - ((mp_digit) 1));
mp_clamp (c);
return MP_OKAY;
}
#endif
|