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

数学计算

开发平台:

Unix_Linux

  1. /* sdiv -- Divide a MINT by a short integer.  Produce a MINT quotient
  2.    and a short remainder.
  3. Copyright 1991, 1994, 1995, 2000, 2001 Free Software Foundation, 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 "mp.h"
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. #include "longlong.h"
  19. void
  20. sdiv (const MINT *dividend, signed short int divisor_short, MINT *quot, short *rem_ptr)
  21. {
  22.   mp_size_t sign_dividend;
  23.   signed long int sign_divisor;
  24.   mp_size_t dividend_size, quot_size;
  25.   mp_ptr dividend_ptr, quot_ptr;
  26.   mp_limb_t divisor_limb;
  27.   mp_limb_t remainder_limb;
  28.   sign_dividend = dividend->_mp_size;
  29.   dividend_size = ABS (dividend->_mp_size);
  30.   if (dividend_size == 0)
  31.     {
  32.       quot->_mp_size = 0;
  33.       *rem_ptr = 0;
  34.       return;
  35.     }
  36.   sign_divisor = divisor_short;
  37.   divisor_limb = (unsigned short) ABS (divisor_short);
  38.   /* No need for temporary allocation and copying even if QUOT == DIVIDEND
  39.      as the divisor is just one limb, and thus no intermediate remainders
  40.      need to be stored.  */
  41.   if (quot->_mp_alloc < dividend_size)
  42.     _mp_realloc (quot, dividend_size);
  43.   quot_ptr = quot->_mp_d;
  44.   dividend_ptr = dividend->_mp_d;
  45.   remainder_limb = mpn_divmod_1 (quot_ptr,
  46.  dividend_ptr, dividend_size, divisor_limb);
  47.   *rem_ptr = sign_dividend >= 0 ? remainder_limb : -remainder_limb;
  48.   /* The quotient is DIVIDEND_SIZE limbs, but the most significant
  49.      might be zero.  Set QUOT_SIZE properly. */
  50.   quot_size = dividend_size - (quot_ptr[dividend_size - 1] == 0);
  51.   quot->_mp_size = (sign_divisor ^ sign_dividend) >= 0 ? quot_size : -quot_size;
  52. }