Lines Matching refs:d1
90 mpi_limb_t d1, d0; in mpihelp_divrem() local
93 d1 = dp[1]; in mpihelp_divrem()
98 if (n1 >= d1 && (n1 > d1 || n0 >= d0)) { in mpihelp_divrem()
99 sub_ddmmss(n1, n0, n1, n0, d1, d0); in mpihelp_divrem()
112 if (n1 == d1) { in mpihelp_divrem()
118 r = n0 + d1; in mpihelp_divrem()
119 if (r < d1) { /* Carry in the addition? */ in mpihelp_divrem()
128 udiv_qrnnd(q, r, n1, n0, d1); in mpihelp_divrem()
138 r += d1; in mpihelp_divrem()
139 if (r >= d1) /* If not carry, test Q again. */ in mpihelp_divrem()
154 mpi_limb_t dX, d1, n0; in mpihelp_divrem() local
158 d1 = dp[dsize - 2]; in mpihelp_divrem()
192 umul_ppmm(n1, n0, d1, q); in mpihelp_divrem()
201 n1 -= n0 < d1; in mpihelp_divrem()
202 n0 -= d1; in mpihelp_divrem()