Lines Matching refs:d1
103 mpi_limb_t d1, d0; in mpihelp_divrem() local
106 d1 = dp[1]; in mpihelp_divrem()
111 if (n1 >= d1 && (n1 > d1 || n0 >= d0)) { in mpihelp_divrem()
112 sub_ddmmss(n1, n0, n1, n0, d1, d0); in mpihelp_divrem()
125 if (n1 == d1) { in mpihelp_divrem()
131 r = n0 + d1; in mpihelp_divrem()
132 if (r < d1) { /* Carry in the addition? */ in mpihelp_divrem()
141 udiv_qrnnd(q, r, n1, n0, d1); in mpihelp_divrem()
151 r += d1; in mpihelp_divrem()
152 if (r >= d1) /* If not carry, test Q again. */ in mpihelp_divrem()
167 mpi_limb_t dX, d1, n0; in mpihelp_divrem() local
171 d1 = dp[dsize - 2]; in mpihelp_divrem()
205 umul_ppmm(n1, n0, d1, q); in mpihelp_divrem()
214 n1 -= n0 < d1; in mpihelp_divrem()
215 n0 -= d1; in mpihelp_divrem()