source: trunk/third/gmp/mpz/cmp_si.c @ 18191

Revision 18191, 1.8 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18190, which included commits to RCS files with non-trunk default branches.
Line 
1/* mpz_cmp_si(u,v) -- Compare an integer U with a single-word int V.
2   Return positive, zero, or negative based on if U > V, U == V, or U < V.
3
4Copyright 1991, 1993, 1994, 1995, 1996, 2000, 2001, 2002 Free Software
5Foundation, Inc.
6
7This file is part of the GNU MP Library.
8
9The GNU MP Library is free software; you can redistribute it and/or modify
10it under the terms of the GNU Lesser General Public License as published by
11the Free Software Foundation; either version 2.1 of the License, or (at your
12option) any later version.
13
14The GNU MP Library is distributed in the hope that it will be useful, but
15WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
17License for more details.
18
19You should have received a copy of the GNU Lesser General Public License
20along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
21the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22MA 02111-1307, USA. */
23
24#include "gmp.h"
25#include "gmp-impl.h"
26
27int
28_mpz_cmp_si (mpz_srcptr u, signed long int v_digit)
29{
30  mp_size_t usize = u->_mp_size;
31  mp_size_t vsize;
32  mp_limb_t u_digit;
33
34#if GMP_NAIL_BITS != 0
35  /* FIXME.  This isn't very pretty.  */
36  mpz_t tmp;
37  mp_limb_t tt[2];
38  PTR(tmp) = tt;
39  ALLOC(tmp) = 2;
40  mpz_set_si (tmp, v_digit);
41  return mpz_cmp (u, tmp);
42#endif
43
44  vsize = 0;
45  if (v_digit > 0)
46    vsize = 1;
47  else if (v_digit < 0)
48    {
49      vsize = -1;
50      v_digit = -v_digit;
51    }
52
53  if (usize != vsize)
54    return usize - vsize;
55
56  if (usize == 0)
57    return 0;
58
59  u_digit = u->_mp_d[0];
60
61  if (u_digit == (mp_limb_t) (unsigned long) v_digit)
62    return 0;
63
64  if (u_digit > (mp_limb_t) (unsigned long) v_digit)
65    return usize;
66  else
67    return -usize;
68}
Note: See TracBrowser for help on using the repository browser.