Lines Matching refs:quotient
1295 mbedtls_t_udbl dividend, quotient;
1299 mbedtls_mpi_uint d0, d1, q0, q1, rAX, r0, quotient;
1318 quotient = dividend / d;
1319 if (quotient > ((mbedtls_t_udbl) 1 << biL) - 1) {
1320 quotient = ((mbedtls_t_udbl) 1 << biL) - 1;
1324 *r = (mbedtls_mpi_uint) (dividend - (quotient * d));
1327 return (mbedtls_mpi_uint) quotient;
1352 * Find the first quotient and remainder
1383 quotient = q1 * radix + q0;
1385 return quotient;