/src/gmp-6.2.1/mpz/tdiv_q_2exp.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* mpz_tdiv_q_2exp -- Divide an integer by 2**CNT. Round the quotient |
2 | | towards -infinity. |
3 | | |
4 | | Copyright 1991, 1993, 1994, 1996, 2001, 2002, 2012 Free Software Foundation, |
5 | | Inc. |
6 | | |
7 | | This file is part of the GNU MP Library. |
8 | | |
9 | | The GNU MP Library is free software; you can redistribute it and/or modify |
10 | | it under the terms of either: |
11 | | |
12 | | * the GNU Lesser General Public License as published by the Free |
13 | | Software Foundation; either version 3 of the License, or (at your |
14 | | option) any later version. |
15 | | |
16 | | or |
17 | | |
18 | | * the GNU General Public License as published by the Free Software |
19 | | Foundation; either version 2 of the License, or (at your option) any |
20 | | later version. |
21 | | |
22 | | or both in parallel, as here. |
23 | | |
24 | | The GNU MP Library is distributed in the hope that it will be useful, but |
25 | | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
26 | | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
27 | | for more details. |
28 | | |
29 | | You should have received copies of the GNU General Public License and the |
30 | | GNU Lesser General Public License along with the GNU MP Library. If not, |
31 | | see https://www.gnu.org/licenses/. */ |
32 | | |
33 | | #include "gmp-impl.h" |
34 | | |
35 | | void |
36 | | mpz_tdiv_q_2exp (mpz_ptr r, mpz_srcptr u, mp_bitcnt_t cnt) |
37 | 166 | { |
38 | 166 | mp_size_t un, rn; |
39 | 166 | mp_size_t limb_cnt; |
40 | 166 | mp_ptr rp; |
41 | 166 | mp_srcptr up; |
42 | | |
43 | 166 | un = SIZ(u); |
44 | 166 | limb_cnt = cnt / GMP_NUMB_BITS; |
45 | 166 | rn = ABS (un) - limb_cnt; |
46 | | |
47 | 166 | if (rn <= 0) |
48 | 18 | rn = 0; |
49 | 148 | else |
50 | 148 | { |
51 | 148 | rp = MPZ_REALLOC (r, rn); |
52 | 148 | up = PTR(u) + limb_cnt; |
53 | | |
54 | 148 | cnt %= GMP_NUMB_BITS; |
55 | 148 | if (cnt != 0) |
56 | 148 | { |
57 | 148 | mpn_rshift (rp, up, rn, cnt); |
58 | 148 | rn -= rp[rn - 1] == 0; |
59 | 148 | } |
60 | 0 | else |
61 | 0 | { |
62 | 0 | MPN_COPY_INCR (rp, up, rn); |
63 | 0 | } |
64 | 148 | } |
65 | | |
66 | 166 | SIZ(r) = un >= 0 ? rn : -rn; |
67 | 166 | } |