Lines Matching refs:bh
147 #define mul64(l, h, bl, bh) \ argument
153 m = (bh) * (lt); \
156 ht = (bh) * (ht); \
188 #define mul_add(r, a, bl, bh, c) \ argument
195 mul64(l, h, (bl), (bh)); \
209 #define mul(r, a, bl, bh, c) \ argument
216 mul64(l, h, (bl), (bh)); \
312 BN_ULONG bl, bh; in bn_mul_add_words() local
320 bh = HBITS(w); in bn_mul_add_words()
323 mul_add(rp[0], ap[0], bl, bh, c); in bn_mul_add_words()
324 mul_add(rp[1], ap[1], bl, bh, c); in bn_mul_add_words()
325 mul_add(rp[2], ap[2], bl, bh, c); in bn_mul_add_words()
326 mul_add(rp[3], ap[3], bl, bh, c); in bn_mul_add_words()
332 mul_add(rp[0], ap[0], bl, bh, c); in bn_mul_add_words()
342 BN_ULONG bl, bh; in bn_mul_words() local
350 bh = HBITS(w); in bn_mul_words()
353 mul(rp[0], ap[0], bl, bh, carry); in bn_mul_words()
354 mul(rp[1], ap[1], bl, bh, carry); in bn_mul_words()
355 mul(rp[2], ap[2], bl, bh, carry); in bn_mul_words()
356 mul(rp[3], ap[3], bl, bh, carry); in bn_mul_words()
362 mul(rp[0], ap[0], bl, bh, carry); in bn_mul_words()
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); \