HomeSort by relevance Sort by last modified time
    Searched refs:mp_cnt_lsb (Results 1 - 11 of 11) sorted by null

  /external/dropbear/libtommath/
bn_mp_cnt_lsb.c 23 int mp_cnt_lsb(mp_int *a) function
bn_mp_gcd.c 45 u_lsb = mp_cnt_lsb(&u);
46 v_lsb = mp_cnt_lsb(&v);
86 if ((res = mp_div_2d(&v, mp_cnt_lsb(&v), &v, NULL)) != MP_OKAY) {
bn_mp_jacobi.c 57 k = mp_cnt_lsb(&a1);
bn_mp_prime_miller_rabin.c 54 s = mp_cnt_lsb(&r);
tommath.h 279 int mp_cnt_lsb(mp_int *a);
  /external/dropbear/libtomcrypt/src/pk/asn1/der/integer/
der_length_integer.c 52 if (((mp_cnt_lsb(num)+1)==mp_count_bits(num)) && ((mp_count_bits(num)&7)==0)) --z;
der_encode_integer.c 63 if (((mp_cnt_lsb(num)+1)==mp_count_bits(num)) && ((mp_count_bits(num)&7)==0)) --y;
109 if (((mp_cnt_lsb(num)+1)==mp_count_bits(num)) && ((mp_count_bits(num)&7)==0)) y -= 8;
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_math.h 461 #define mp_cnt_lsb(a) ltc_mp.count_lsb_bits(a) macro
  /external/dropbear/libtomcrypt/src/math/
ltm_desc.c 155 return mp_cnt_lsb(a);
  /external/dropbear/libtommath/demo/
demo.c 241 /* test mp_cnt_lsb */
242 printf("testing mp_cnt_lsb...\n");
245 if (mp_cnt_lsb(&a) != ix) {
246 printf("Failed at %d, %d\n", ix, mp_cnt_lsb(&a));
  /external/dropbear/libtommath/pre_gen/
mpi.c 1400 int mp_cnt_lsb(mp_int *a) function
    [all...]

Completed in 46 milliseconds