xref: /dragonfly/contrib/gmp/mpz/com.c (revision 9348a738)
1 /* mpz_com(mpz_ptr dst, mpz_ptr src) -- Assign the bit-complemented value of
2    SRC to DST.
3 
4 Copyright 1991, 1993, 1994, 1996, 2001, 2003 Free Software Foundation, Inc.
5 
6 This file is part of the GNU MP Library.
7 
8 The GNU MP Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or (at your
11 option) any later version.
12 
13 The GNU MP Library is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
16 License for more details.
17 
18 You should have received a copy of the GNU Lesser General Public License
19 along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
20 
21 #include "gmp.h"
22 #include "gmp-impl.h"
23 
24 void
25 mpz_com (mpz_ptr dst, mpz_srcptr src)
26 {
27   mp_size_t size = src->_mp_size;
28   mp_srcptr src_ptr;
29   mp_ptr dst_ptr;
30 
31   if (size >= 0)
32     {
33       /* As with infinite precision: one's complement, two's complement.
34 	 But this can be simplified using the identity -x = ~x + 1.
35 	 So we're going to compute (~~x) + 1 = x + 1!  */
36 
37       if (dst->_mp_alloc < size + 1)
38 	_mpz_realloc (dst, size + 1);
39 
40       src_ptr = src->_mp_d;
41       dst_ptr = dst->_mp_d;
42 
43       if (UNLIKELY (size == 0))
44 	{
45 	  /* special case, as mpn_add_1 wants size!=0 */
46 	  dst_ptr[0] = 1;
47 	  dst->_mp_size = -1;
48 	  return;
49 	}
50 
51       {
52 	mp_limb_t cy;
53 
54 	cy = mpn_add_1 (dst_ptr, src_ptr, size, (mp_limb_t) 1);
55 	if (cy)
56 	  {
57 	    dst_ptr[size] = cy;
58 	    size++;
59 	  }
60       }
61 
62       /* Store a negative size, to indicate ones-extension.  */
63       dst->_mp_size = -size;
64     }
65   else
66     {
67       /* As with infinite precision: two's complement, then one's complement.
68 	 But that can be simplified using the identity -x = ~(x - 1).
69 	 So we're going to compute ~~(x - 1) = x - 1!  */
70       size = -size;
71 
72       if (dst->_mp_alloc < size)
73 	_mpz_realloc (dst, size);
74 
75       src_ptr = src->_mp_d;
76       dst_ptr = dst->_mp_d;
77 
78       mpn_sub_1 (dst_ptr, src_ptr, size, (mp_limb_t) 1);
79       size -= dst_ptr[size - 1] == 0;
80 
81       /* Store a positive size, to indicate zero-extension.  */
82       dst->_mp_size = size;
83     }
84 }
85