Home
last modified time | relevance | path

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

/openthread-3.6.0/third_party/mbedtls/repo/library/
Dbignum.c65 #define biL (ciL << 3) /* bits in limb */ macro
74 #define BITS_TO_LIMBS(i) ( (i) / biL + ( (i) % biL != 0 ) )
299 if( X->n * biL <= pos ) in mbedtls_mpi_get_bit()
302 return( ( X->p[pos / biL] >> ( pos % biL ) ) & 0x01 ); in mbedtls_mpi_get_bit()
315 size_t off = pos / biL; in mbedtls_mpi_set_bit()
316 size_t idx = pos % biL; in mbedtls_mpi_set_bit()
322 if( X->n * biL <= pos ) in mbedtls_mpi_set_bit()
347 for( j = 0; j < biL; j++, count++ ) in mbedtls_mpi_lsb()
360 mbedtls_mpi_uint mask = (mbedtls_mpi_uint) 1 << (biL - 1); in mbedtls_clz()
362 for( j = 0; j < biL; j++ ) in mbedtls_clz()
[all …]
Decp_curves.c989 #define biL (ciL << 3) /* bits in limb */ macro
1001 MBEDTLS_MPI_CHK( mbedtls_mpi_grow( N, ( b ) * 2 / biL + 1 ) ); \
/openthread-3.6.0/third_party/mbedtls/repo/include/mbedtls/
Dbn_mul.h942 r1 = (mbedtls_mpi_uint)( r >> biL ); \