Home
last modified time | relevance | path

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

/openthread-2.7.6/third_party/mbedtls/repo/library/
Dbignum.c63 #define biL (ciL << 3) /* bits in limb */ macro
72 #define BITS_TO_LIMBS(i) ( (i) / biL + ( (i) % biL != 0 ) )
349 if( X->n * biL <= pos ) in mbedtls_mpi_get_bit()
352 return( ( X->p[pos / biL] >> ( pos % biL ) ) & 0x01 ); in mbedtls_mpi_get_bit()
365 size_t off = pos / biL; in mbedtls_mpi_set_bit()
366 size_t idx = pos % biL; in mbedtls_mpi_set_bit()
372 if( X->n * biL <= pos ) in mbedtls_mpi_set_bit()
397 for( j = 0; j < biL; j++, count++ ) in mbedtls_mpi_lsb()
410 mbedtls_mpi_uint mask = (mbedtls_mpi_uint) 1 << (biL - 1); in mbedtls_clz()
412 for( j = 0; j < biL; j++ ) in mbedtls_clz()
[all …]
/openthread-2.7.6/third_party/mbedtls/repo/include/mbedtls/
Dbn_mul.h902 r1 = (mbedtls_mpi_uint)( r >> biL ); \