libtommath/mp_count_bits.c

29 lines
572 B
C
Raw Permalink Normal View History

#include "tommath_private.h"
#ifdef MP_COUNT_BITS_C
2019-04-07 13:29:11 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2003-02-28 16:08:34 +00:00
/* returns the number of bits in an int */
int mp_count_bits(const mp_int *a)
2003-02-28 16:08:34 +00:00
{
2017-08-29 20:23:48 +00:00
int r;
mp_digit q;
2003-02-28 16:08:34 +00:00
2017-08-29 20:23:48 +00:00
/* shortcut */
2019-10-24 15:43:31 +00:00
if (mp_iszero(a)) {
2017-08-29 20:23:48 +00:00
return 0;
}
2003-02-28 16:08:34 +00:00
2017-08-29 20:23:48 +00:00
/* get number of digits and add that */
2019-04-13 06:46:57 +00:00
r = (a->used - 1) * MP_DIGIT_BIT;
2017-08-30 03:51:11 +00:00
2017-08-29 20:23:48 +00:00
/* take the last digit and count the bits in it */
q = a->dp[a->used - 1];
2019-05-22 08:33:12 +00:00
while (q > 0u) {
2017-08-29 20:23:48 +00:00
++r;
2019-05-22 08:33:12 +00:00
q >>= 1u;
2017-08-29 20:23:48 +00:00
}
return r;
2003-02-28 16:08:34 +00:00
}
2004-10-29 22:07:18 +00:00
#endif