Lines Matching defs:BN_UMULT_HIGH
369 * BN_UMULT_HIGH section.
381 * what BN_UMULT_HIGH macro is about:-) Note that more recent compilers do
386 # define BN_UMULT_HIGH(a,b) (((uint128_t)(a)*(b))>>64)
393 # define BN_UMULT_HIGH(a,b) (BN_ULONG)asm("umulh %a0,%a1,%v0",(a),(b))
395 # define BN_UMULT_HIGH(a,b) ({ \
404 # define BN_UMULT_HIGH(a,b) ({ \
414 # define BN_UMULT_HIGH(a,b) ({ \
433 # define BN_UMULT_HIGH(a,b) __umulh((a),(b))
438 # define BN_UMULT_HIGH(a,b) ({ \
451 # define BN_UMULT_HIGH(a,b) ({ \
528 # elif defined(BN_UMULT_HIGH)
532 high= BN_UMULT_HIGH(w,tmp); \
545 high= BN_UMULT_HIGH(w,ta); \
555 (r1) = BN_UMULT_HIGH(tmp,tmp); \