1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/* int mpz_fits_X_p (mpz_t z) -- test whether z fits signed type X.
Copyright 1997, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.
The GNU MP Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA. */
#include "gmpcompat.h"
#include "fmpz.h"
#if defined(_WIN64) || defined(__mips64)
#define FLINT_UI_MAX ((ulong)(~(ulong)0))
#define FLINT_UI_HIBIT (FLINT_UI_MAX ^ (FLINT_UI_MAX >> 1))
#define FLINT_SI_MAX ((slong)(FLINT_UI_MAX ^ FLINT_UI_HIBIT))
#define FLINT_SI_MIN ((slong)FLINT_UI_HIBIT)
int
flint_mpz_fits_si_p(mpz_srcptr z)
{
slong n = z->_mp_size;
nn_ptr p = z->_mp_d;
ulong limb = p[0];
if (n == 0)
return 1;
if (n == 1)
return limb <= FLINT_SI_MAX;
if (n == -1)
return limb <= (ulong) FLINT_SI_MIN;
return 0;
}
#endif
/*
Copyright (C) 2011 Sebastian Pancratz
Copyright (C) 2013 William Hart
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 3 of the License, or
(at your option) any later version. See <https://www.gnu.org/licenses/>.
*/
int fmpz_fits_si(const fmpz_t f)
{
if (!COEFF_IS_MPZ(*f))
{
return 1;
}
else
{
#if defined(_WIN64) || defined(__mips64)
return flint_mpz_fits_si_p(COEFF_TO_PTR(*f));
#else
return mpz_fits_slong_p(COEFF_TO_PTR(*f));
#endif
}
}