Home | History | Annotate | Download | only in bn

Lines Matching refs:high

268 #   define BN_UMULT_LOHI(low,high,a,b)	\
270 : "=a"(low),"=d"(high) \
281 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high)))
287 # define BN_UMULT_LOHI(low,high,a,b) ({ \
289 (high)=ret>>64; (low)=ret; })
297 # define BN_UMULT_LOHI(low,high,a,b)\
299 : "=l"(low),"=h"(high) \
348 BN_ULONG high,low,ret,tmp=(a); \
350 BN_UMULT_LOHI(low,high,w,tmp); \
353 (c) += high; \
360 BN_ULONG high,low,ret,ta=(a); \
361 BN_UMULT_LOHI(low,high,w,ta); \
363 (c) = high; \
375 BN_ULONG high,low,ret,tmp=(a); \
377 high= BN_UMULT_HIGH(w,tmp); \
381 (c) += high; \
388 BN_ULONG high,low,ret,ta=(a); \
390 high= BN_UMULT_HIGH(w,ta); \
392 (c) = high; \