Lines Matching defs:BN_ULLONG
99 # undef BN_ULLONG
100 # define BN_ULLONG uint128_t
117 BN_ULLONG R = ((BN_ULLONG)m[0] << BN_BITS2) | m[-1];
118 BN_ULLONG D = ((BN_ULLONG)d0 << BN_BITS2) | d1;
168 * in reply to ((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0 (I fail to
357 BN_ULLONG t2;
360 q = (BN_ULONG)(((((BN_ULLONG) n0) << BN_BITS2) | n1) / d0);
367 * rem doesn't have to be BN_ULLONG. The least we
372 t2 = (BN_ULLONG) d1 *q;
375 if (t2 <= ((((BN_ULLONG) rem) << BN_BITS2) | n2))
403 mul64(t2l, t2h, ql, qh); /* t2=(BN_ULLONG)d1*q; */