Home
last modified time | relevance | path

Searched refs:n1 (Results 1 – 7 of 7) sorted by relevance

/stdlib/
A Ddivrem.c65 if (n1 >= d) in mpn_divrem()
73 udiv_qrnnd (qp[i], n1, n1, np[i], d); in mpn_divrem()
77 udiv_qrnnd (qp[i], n1, n1, 0, d); in mpn_divrem()
79 np[0] = n1; in mpn_divrem()
92 n1 = np[1]; in mpn_divrem()
95 if (n1 >= d1 && (n1 > d1 || n0 >= d0)) in mpn_divrem()
97 sub_ddmmss (n1, n0, n1, n0, d1, d0); in mpn_divrem()
136 if (n1 > r || (n1 == r && n0 > n2)) in mpn_divrem()
141 sub_ddmmss (n1, n0, n1, n0, 0, d0); in mpn_divrem()
148 sub_ddmmss (n1, n0, r, n2, n1, n0); in mpn_divrem()
[all …]
A Dmod_1.c44 mp_limb_t n1, n0, r; in mpn_mod_1() local
81 n1 = dividend_ptr[dividend_size - 1]; in mpn_mod_1()
82 r = n1 >> (BITS_PER_MP_LIMB - normalization_steps); in mpn_mod_1()
94 ((n1 << normalization_steps) in mpn_mod_1()
97 n1 = n0; in mpn_mod_1()
100 n1 << normalization_steps, in mpn_mod_1()
147 n1 = dividend_ptr[dividend_size - 1]; in mpn_mod_1()
148 r = n1 >> (BITS_PER_MP_LIMB - normalization_steps); in mpn_mod_1()
160 ((n1 << normalization_steps) in mpn_mod_1()
163 n1 = n0; in mpn_mod_1()
[all …]
A Ddivmod_1.c48 mp_limb_t n1, n0, r; in mpn_divmod_1() local
85 n1 = dividend_ptr[dividend_size - 1]; in mpn_divmod_1()
86 r = n1 >> (BITS_PER_MP_LIMB - normalization_steps); in mpn_divmod_1()
98 ((n1 << normalization_steps) in mpn_divmod_1()
101 n1 = n0; in mpn_divmod_1()
104 n1 << normalization_steps, in mpn_divmod_1()
154 n1 = dividend_ptr[dividend_size - 1]; in mpn_divmod_1()
155 r = n1 >> (BITS_PER_MP_LIMB - normalization_steps); in mpn_divmod_1()
167 ((n1 << normalization_steps) in mpn_divmod_1()
170 n1 = n0; in mpn_divmod_1()
[all …]
A Dmsort.c42 size_t n1, n2; in msort_with_tmp() local
47 n1 = n / 2; in msort_with_tmp()
48 n2 = n - n1; in msort_with_tmp()
52 msort_with_tmp (p, b1, n1); in msort_with_tmp()
62 while (n1 > 0 && n2 > 0) in msort_with_tmp()
68 --n1; in msort_with_tmp()
86 --n1; in msort_with_tmp()
108 --n1; in msort_with_tmp()
127 --n1; in msort_with_tmp()
145 --n1; in msort_with_tmp()
[all …]
A Dgmp-impl.h243 mp_limb_t n2, n10, n1, nadj, q1; \
247 n1 = ((mp_limb_signed_t) n10 >> (BITS_PER_MP_LIMB - 1)); \
248 nadj = n10 + (n1 & (dnorm)); \
249 umul_ppmm (_xh, _xl, di, n2 - n1); \
262 mp_limb_t n2, n10, n1, nadj, q1; \
266 n1 = ((mp_limb_signed_t) n10 >> (BITS_PER_MP_LIMB - 1)); \
267 nadj = n10 + (n1 & (d)); \
268 umul_ppmm (_xh, _xl, di, n2 - n1); \
A Dlonglong.h154 #define udiv_qrnnd(q, r, n1, n0, d) \ argument
420 #define sdiv_qrnnd(q, r, n1, n0, d) \ argument
443 #define sdiv_qrnnd(q, r, n1, n0, d) \ argument
484 "1" ((USItype) (n1)), \
520 "1" ((UDItype) (n1)), \
646 #define udiv_qrnnd(q, r, n1, n0, d) \ argument
651 "1" ((USItype) (n1)), \
659 "1" ((USItype) (n1)), \
1287 : "r" ((USItype) (n1)), \
1688 __r1 = (n1) % __d1; \
[all …]
A Dstrtod_l.c1548 mp_limb_t d0, d1, n0, n1; in ____STRTOF_INTERNAL() local
1562 n1 = 0; in ____STRTOF_INTERNAL()
1582 n1 = num[0]; in ____STRTOF_INTERNAL()
1588 n1 = num[1]; in ____STRTOF_INTERNAL()
1596 if (n1 == d1) in ____STRTOF_INTERNAL()
1609 n1 = d0 - (d0 != 0); in ____STRTOF_INTERNAL()
1619 if (n1 > r || (n1 == r && n0 > 0)) in ____STRTOF_INTERNAL()
1624 sub_ddmmss (n1, n0, n1, n0, 0, d0); in ____STRTOF_INTERNAL()
1629 sub_ddmmss (n1, n0, r, 0, n1, n0); in ____STRTOF_INTERNAL()
1729 while (n1 > r || (n1 == r && n0 > num[densize - 2])) in ____STRTOF_INTERNAL()
[all …]

Completed in 17 milliseconds