Home | History | Annotate | Download | only in bn

Lines Matching defs:bl

147 #define mul64(l, h, bl, bh)       \
154 lt = (bl) * (lt); \
155 m1 = (bl) * (ht); \
188 #define mul_add(r, a, bl, bh, c) \
195 mul64(l, h, (bl), (bh)); \
209 #define mul(r, a, bl, bh, c) \
216 mul64(l, h, (bl), (bh)); \
312 BN_ULONG bl, bh;
319 bl = LBITS(w);
323 mul_add(rp[0], ap[0], bl, bh, c);
324 mul_add(rp[1], ap[1], bl, bh, c);
325 mul_add(rp[2], ap[2], bl, bh, c);
326 mul_add(rp[3], ap[3], bl, bh, c);
332 mul_add(rp[0], ap[0], bl, bh, c);
342 BN_ULONG bl, bh;
349 bl = LBITS(w);
353 mul(rp[0], ap[0], bl, bh, carry);
354 mul(rp[1], ap[1], bl, bh, carry);
355 mul(rp[2], ap[2], bl, bh, carry);
356 mul(rp[3], ap[3], bl, bh, carry);
362 mul(rp[0], ap[0], bl, bh, carry);
733 BN_ULONG bl = LBITS(b), bh = HBITS(b); \
734 mul64(lo, hi, bl, bh); \
747 BN_ULONG bl = LBITS(b), bh = HBITS(b); \
748 mul64(lo, hi, bl, bh); \