Home | History | Annotate | Download | only in bn

Lines Matching refs:n0

137     *   in reply to ((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0 (I fail to
145 # define bn_div_words(n0,n1,d0) \
149 : "a"(n1), "d"(n0), "g"(d0) \
160 # define bn_div_words(n0,n1,d0) \
164 : "a"(n1), "d"(n0), "g"(d0) \
325 BN_ULONG n0,n1,rem=0;
327 n0=wnump[0];
329 if (n0 == d0)
331 else /* n0 < d0 */
337 q=(BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0);
339 q=bn_div_words(n0,n1,d0);
343 n0, n1, d0, q);
368 q=bn_div_words(n0,n1,d0);
372 n0, n1, d0, q);