Home | History | Annotate | Download | only in bn

Lines Matching refs:BN_UMULT_HIGH

215  * BN_UMULT_HIGH section.
232 * exhibiting "native" performance in C. That's what BN_UMULT_HIGH
240 # define BN_UMULT_HIGH(a,b) (BN_ULONG)asm("umulh %a0,%a1,%v0",(a),(b))
242 # define BN_UMULT_HIGH(a,b) ({ \
251 # define BN_UMULT_HIGH(a,b) ({ \
261 # define BN_UMULT_HIGH(a,b) ({ \
280 # define BN_UMULT_HIGH(a,b) __umulh((a),(b))
353 #elif defined(BN_UMULT_HIGH)
357 high= BN_UMULT_HIGH(w,tmp); \
370 high= BN_UMULT_HIGH(w,ta); \
380 (r1) = BN_UMULT_HIGH(tmp,tmp); \