H A D | bn_local.h | 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); \ [all …]
|