Lines Matching defs:min
112 /* Whether min <= A, in constant time.
114 mbedtls_ct_condition_t mbedtls_mpi_core_uint_le_mpi(mbedtls_mpi_uint min,
118 /* min <= least significant limb? */
119 mbedtls_ct_condition_t min_le_lsl = mbedtls_ct_uint_ge(A[0], min);
127 /* min <= A iff the lowest limb of A is >= min or the other limbs
638 mbedtls_mpi_uint min,
650 * When min == 0, each try has at worst a probability 1/2 of failing
660 * The probabilities are almost the same if min is nonzero but negligible
687 ge_lower = mbedtls_mpi_core_uint_le_mpi(min, X, limbs);