Home
last modified time | relevance | path

Searched refs:xh (Results 1 – 2 of 2) sorted by relevance

/coreutils/src/
Dlonglong.h381 #define umul_ppmm(xh, xl, m0, m1) \ argument
388 : "=r" (xh) \
493 #define umul_ppmm(xh, xl, a, b) \ argument
509 : "=&r" ((USItype) (xh)), "=r" ((USItype) (xl)), \
522 #define umul_ppmm(xh, xl, a, b) \ argument
523 __asm__ ("umull %0,%1,%2,%3" : "=&r" (xl), "=&r" (xh) : "r" (a), "r" (b))
524 #define smul_ppmm(xh, xl, a, b) \ argument
525 __asm__ ("smull %0,%1,%2,%3" : "=&r" (xl), "=&r" (xh) : "r" (a), "r" (b))
740 #define umul_ppmm(xh, xl, m0, m1) \ argument
746 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \
[all …]
Dfactor.c975 uintmax_t rh, rl, q, th, xh; in mulredc() local
981 xh = rh - th; in mulredc()
983 xh += m; in mulredc()
985 return xh; in mulredc()