Differences From Artifact [52222d1a65]:
- File libtommath/bn_mp_mul.c — part of check-in [6954ead823] at 2017-09-18 08:31:55 on branch trunk — Merge libtommath upstream changes (astyle formatting only). No functional changes. All Tcl-specific modifications are kept. (user: jan.nijtmans size: 1937) [more...]
To Artifact [f853fee133]:
- File libtommath/bn_mp_mul.c — part of check-in [6706db6842] at 2017-09-20 09:07:35 on branch trunk — Further astyle formatting of libtommath. No functional changes. (user: jan.nijtmans size: 1936) [more...]
| ︙ | |||
47 48 49 50 51 52 53 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | - + |
(MIN(a->used, b->used) <=
(1 << ((CHAR_BIT * sizeof(mp_word)) - (2 * DIGIT_BIT))))) {
res = fast_s_mp_mul_digs(a, b, c, digs);
} else
#endif
{
#ifdef BN_S_MP_MUL_DIGS_C
|
| ︙ |