Home
last modified time | relevance | path

Searched refs:biL (Results 1 – 2 of 2) sorted by relevance

/net-tools-latest/mbedtls-2.4.0/library/
Dbignum.c67 #define biL (ciL << 3) /* bits in limb */ macro
76 #define BITS_TO_LIMBS(i) ( (i) / biL + ( (i) % biL != 0 ) )
310 if( X->n * biL <= pos ) in mbedtls_mpi_get_bit()
313 return( ( X->p[pos / biL] >> ( pos % biL ) ) & 0x01 ); in mbedtls_mpi_get_bit()
322 size_t off = pos / biL; in mbedtls_mpi_set_bit()
323 size_t idx = pos % biL; in mbedtls_mpi_set_bit()
328 if( X->n * biL <= pos ) in mbedtls_mpi_set_bit()
352 for( j = 0; j < biL; j++, count++ ) in mbedtls_mpi_lsb()
365 mbedtls_mpi_uint mask = (mbedtls_mpi_uint) 1 << (biL - 1); in mbedtls_clz()
367 for( j = 0; j < biL; j++ ) in mbedtls_clz()
[all …]
/net-tools-latest/mbedtls-2.4.0/include/mbedtls/
Dbn_mul.h849 r1 = (mbedtls_mpi_uint)( r >> biL ); \