Home | History | Annotate | Download | only in bn

Lines Matching defs:bh

141 #define mul64(l, h, bl, bh)       \
147 m = (bh) * (lt); \
150 ht = (bh) * (ht); \
182 #define mul_add(r, a, bl, bh, c) \
189 mul64(l, h, (bl), (bh)); \
203 #define mul(r, a, bl, bh, c) \
210 mul64(l, h, (bl), (bh)); \
306 BN_ULONG bl, bh;
314 bh = HBITS(w);
317 mul_add(rp[0], ap[0], bl, bh, c);
318 mul_add(rp[1], ap[1], bl, bh, c);
319 mul_add(rp[2], ap[2], bl, bh, c);
320 mul_add(rp[3], ap[3], bl, bh, c);
326 mul_add(rp[0], ap[0], bl, bh, c);
336 BN_ULONG bl, bh;
344 bh = HBITS(w);
347 mul(rp[0], ap[0], bl, bh, carry);
348 mul(rp[1], ap[1], bl, bh, carry);
349 mul(rp[2], ap[2], bl, bh, carry);
350 mul(rp[3], ap[3], bl, bh, carry);
356 mul(rp[0], ap[0], bl, bh, carry);
727 BN_ULONG bl = LBITS(b), bh = HBITS(b); \
728 mul64(lo, hi, bl, bh); \
741 BN_ULONG bl = LBITS(b), bh = HBITS(b); \
742 mul64(lo, hi, bl, bh); \