Lines Matching refs:temp1
34 mpz_t gcd1, gcd2, s, temp1, temp2, temp3;
96 mpz_t bs, temp1, temp2;
99 mpz_inits (bs, temp1, temp2, NULL);
117 mpz_mul (temp1, b, temp2);
118 mpz_add (a, a, temp1);
124 mpz_mul (temp1, a, temp2);
125 mpz_add (b, b, temp1);
128 mpz_clears (bs, temp1, temp2, NULL);
233 mpz_inits (bs, op1, op2, ref, gcd1, gcd2, temp1, temp2, temp3, s, NULL);
293 mpz_gcdext (NULL, temp1, temp2, op1, op2);
294 ASSERT_ALWAYS (mpz_cmp_si (temp1, -1) == 0);
297 mpz_gcdext (NULL, temp1, temp2, op1, op2);
298 ASSERT_ALWAYS (mpz_cmp_si (temp1, 1) == 0);
301 mpz_clears (bs, op1, op2, ref, gcd1, gcd2, temp1, temp2, temp3, s, NULL);
385 mpz_gcdext (gcd2, temp1, temp2, op1, op2);
387 MPZ_CHECK_FORMAT (temp1);
390 mpz_mul (temp1, temp1, op1);
392 mpz_add (temp1, temp1, temp2);
395 || mpz_cmp (gcd2, temp1) != 0)
408 Uses temp1, temp2 and temp3. */
432 mpz_tdiv_qr (temp1, temp3, a, g);
460 if (mpz_cmpabs (temp2, temp1) >= 0)