Lines Matching refs:high
390 # define BN_UMULT_LOHI(low,high,a,b) ({ \ argument
392 (high)=ret>>64; (low)=ret; })
424 # define BN_UMULT_LOHI(low,high,a,b) \ argument
426 : "=a"(low),"=d"(high) \
437 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high))) argument
447 # define BN_UMULT_LOHI(low,high,a,b) \ argument
449 : "=l"(low),"=h"(high) \
506 BN_ULONG high,low,ret,tmp=(a); \
508 BN_UMULT_LOHI(low,high,w,tmp); \
511 (c) += high; \
518 BN_ULONG high,low,ret,ta=(a); \
519 BN_UMULT_LOHI(low,high,w,ta); \
521 (c) = high; \
533 BN_ULONG high,low,ret,tmp=(a); \
535 high= BN_UMULT_HIGH(w,tmp); \
539 (c) += high; \
546 BN_ULONG high,low,ret,ta=(a); \
548 high= BN_UMULT_HIGH(w,ta); \
550 (c) = high; \