Home
last modified time | relevance | path

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

/optee_os-3.20.0/lib/libmbedtls/core/
A Dbignum.c16 #define biL (ciL << 3) /* bits in limb */ macro
17 #define BITS_TO_LIMBS(i) ((i) / biL + ((i) % biL != 0))
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/
A Dbignum.c77 #define BITS_TO_LIMBS(i) ( (i) / biL + ( (i) % biL != 0 ) )
346 if( X->n * biL <= pos ) in mbedtls_mpi_get_bit()
349 return( ( X->p[pos / biL] >> ( pos % biL ) ) & 0x01 ); in mbedtls_mpi_get_bit()
362 size_t off = pos / biL; in mbedtls_mpi_set_bit()
363 size_t idx = pos % biL; in mbedtls_mpi_set_bit()
995 if( X->n * biL < i ) in mbedtls_mpi_shift_l()
1040 v0 = count / biL; in mbedtls_mpi_shift_r()
1643 u1 |= ( u0 >> ( biL - s ) ) & ( -(mbedtls_mpi_sint)s >> ( biL - 1 ) ); in mbedtls_int_div_int()
1732 if( k < biL - 1 ) in mbedtls_mpi_div_mpi()
1734 k = biL - 1 - k; in mbedtls_mpi_div_mpi()
[all …]
A Decp_curves.c1037 #define biL (ciL << 3) /* bits in limb */ macro
1049 MBEDTLS_MPI_CHK( mbedtls_mpi_grow( N, ( b ) * 2 / biL + 1 ) ); \
/optee_os-3.20.0/core/lib/libtomcrypt/
A Dmpi_desc.c26 #define biL (ciL << 3) /* bits in limb */ macro
27 #define BITS_TO_LIMBS(i) ((i) / biL + ((i) % biL != 0))
/optee_os-3.20.0/lib/libmbedtls/mbedtls/include/mbedtls/
A Dbn_mul.h942 r1 = (mbedtls_mpi_uint)( r >> biL ); \

Completed in 14 milliseconds