Home
last modified time | relevance | path

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

/coreutils/src/
Dfactor.c1791 isqrt2 (uintmax_t nh, uintmax_t nl) in isqrt2() argument
1797 affirm (nh < ((uintmax_t) 1 << (W_TYPE_SIZE - 2))); in isqrt2()
1799 if (nh == 0) in isqrt2()
1802 count_leading_zeros (shift, nh); in isqrt2()
1806 x = isqrt ((nh << shift) + (nl >> (W_TYPE_SIZE - shift))) + 1; in isqrt2()
1814 udiv_qrnnd (q, r, nh, nl, x); in isqrt2()
1821 affirm (gt2 (hi, lo, nh, nl)); in isqrt2()
1824 affirm (ge2 (nh, nl, hi, lo)); in isqrt2()
1825 sub_ddmmss (hi, lo, nh, nl, hi, lo); in isqrt2()
Dlonglong.h649 #define udiv_qrnnd(q, r, nh, nl, d) \ argument
652 : "1" ((USItype)(nh)), "0" ((USItype)(nl)), "g" ((USItype)(d)))
1116 #define udiv_qrnnd(q, r, nh, nl, d) \ argument
1121 __nn.__i.__h = (nh); __nn.__i.__l = (nl); \
1450 #define sdiv_qrnnd(q, r, nh, nl, d) \ argument
1451 __asm__ ("div %0,%2,%4" : "=r" (q), "=q" (r) : "r" (nh), "1" (nl), "r" (d))
2177 #define udiv_qrnnd(q, r, nh, nl, d) \ argument
2180 (q) = __MPN(udiv_w_sdiv) (&__r, nh, nl, d); \