lshiftc.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* mpn_lshiftc -- Shift left low level with complement.
  2. Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2002, 2009 Free Software Foundation,
  3. Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. /* Shift U (pointed to by up and n limbs long) cnt bits to the left
  18.    and store the n least significant limbs of the result at rp.
  19.    Return the bits shifted out from the most significant limb.
  20.    Argument constraints:
  21.    1. 0 < cnt < GMP_NUMB_BITS.
  22.    2. If the result is to be written over the input, rp must be >= up.
  23. */
  24. mp_limb_t
  25. mpn_lshiftc (mp_ptr rp, mp_srcptr up, mp_size_t n, unsigned int cnt)
  26. {
  27.   mp_limb_t high_limb, low_limb;
  28.   unsigned int tnc;
  29.   mp_size_t i;
  30.   mp_limb_t retval;
  31.   ASSERT (n >= 1);
  32.   ASSERT (cnt >= 1);
  33.   ASSERT (cnt < GMP_NUMB_BITS);
  34.   ASSERT (MPN_SAME_OR_DECR_P (rp, up, n));
  35.   up += n;
  36.   rp += n;
  37.   tnc = GMP_NUMB_BITS - cnt;
  38.   low_limb = *--up;
  39.   retval = low_limb >> tnc;
  40.   high_limb = (low_limb << cnt);
  41.   for (i = n - 1; i != 0; i--)
  42.     {
  43.       low_limb = *--up;
  44.       *--rp = (~(high_limb | (low_limb >> tnc))) & GMP_NUMB_MASK;
  45.       high_limb = low_limb << cnt;
  46.     }
  47.   *--rp = (~high_limb) & GMP_NUMB_MASK;
  48.   return retval;
  49. }