Lines Matching refs:d1
234 mpi_limb_t d1, d0; in mpihelp_divrem() local
237 d1 = dp[1]; in mpihelp_divrem()
242 if (n1 >= d1 && (n1 > d1 || n0 >= d0)) { in mpihelp_divrem()
243 sub_ddmmss(n1, n0, n1, n0, d1, d0); in mpihelp_divrem()
256 if (n1 == d1) { in mpihelp_divrem()
262 r = n0 + d1; in mpihelp_divrem()
263 if (r < d1) { /* Carry in the addition? */ in mpihelp_divrem()
272 udiv_qrnnd(q, r, n1, n0, d1); in mpihelp_divrem()
282 r += d1; in mpihelp_divrem()
283 if (r >= d1) /* If not carry, test Q again. */ in mpihelp_divrem()
298 mpi_limb_t dX, d1, n0; in mpihelp_divrem() local
302 d1 = dp[dsize - 2]; in mpihelp_divrem()
336 umul_ppmm(n1, n0, d1, q); in mpihelp_divrem()
345 n1 -= n0 < d1; in mpihelp_divrem()
346 n0 -= d1; in mpihelp_divrem()