Lines Matching refs:biL
39 mbedtls_mpi_uint mask = (mbedtls_mpi_uint) 1 << (biL - 1);
41 for (j = 0; j < biL; j++) {
60 j = biL - mbedtls_mpi_core_clz(A[i]);
61 return (i * biL) + j;
336 v0 = count / biL;
337 v1 = count & (biL - 1);
362 r1 = X[i - 1] << (biL - v1);
376 v0 = count / (biL);
377 v1 = count & (biL - 1);
397 r1 = X[i] >> (biL - v1);
519 for (unsigned int i = biL; i >= 8; i /= 2) {
538 /* T = (T + u0*B + u1*N) / 2^biL */
562 * Using R as the Montgomery radix (auxiliary modulus) i.e. 2^(biL*AN_limbs):
588 MBEDTLS_MPI_CHK(mbedtls_mpi_shift_l(X, N->n * 2 * biL));
711 const size_t wsize = exp_mod_get_window_size(E_limbs * biL);
755 * RR must contain 2^{2*biL} mod N.
770 const size_t wsize = exp_mod_get_window_size(E_limbs * biL);
802 * (limb_index=E_limbs-1, E_bit_index=biL-1) to least significant
818 E_bit_index = biL - 1;