Home | History | Annotate | Download | only in mpz

Lines Matching defs:quotient

34   mpz_t quotient, remainder;
55 mpz_init (quotient);
84 r_rq = mpz_cdiv_qr_ui (quotient, remainder, dividend, divisor);
91 if (mpz_cmp (quotient, quotient2) != 0)
98 /* Check if the sign of the quotient is correct. */
99 if (mpz_cmp_ui (quotient, 0) != 0)
100 if ((mpz_cmp_ui (quotient, 0) < 0)
102 dump_abort ("quotient sign wrong", dividend, divisor);
105 (quotient rounded towards minus infinity). */
110 mpz_mul_ui (temp, quotient, divisor);
135 mpz_clear (quotient);