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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_and_n, mpn_ior_n, etc -- mpn logical operations.
  2. Copyright 2009 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include "gmp.h"
  15. #include "gmp-impl.h"
  16. #ifdef OPERATION_and_n
  17. #define func __MPN(and_n)
  18. #define call mpn_and_n
  19. #endif
  20. #ifdef OPERATION_andn_n
  21. #define func __MPN(andn_n)
  22. #define call mpn_andn_n
  23. #endif
  24. #ifdef OPERATION_nand_n
  25. #define func __MPN(nand_n)
  26. #define call mpn_nand_n
  27. #endif
  28. #ifdef OPERATION_ior_n
  29. #define func __MPN(ior_n)
  30. #define call mpn_ior_n
  31. #endif
  32. #ifdef OPERATION_iorn_n
  33. #define func __MPN(iorn_n)
  34. #define call mpn_iorn_n
  35. #endif
  36. #ifdef OPERATION_nior_n
  37. #define func __MPN(nior_n)
  38. #define call mpn_nior_n
  39. #endif
  40. #ifdef OPERATION_xor_n
  41. #define func __MPN(xor_n)
  42. #define call mpn_xor_n
  43. #endif
  44. #ifdef OPERATION_xnor_n
  45. #define func __MPN(xnor_n)
  46. #define call mpn_xnor_n
  47. #endif
  48. void
  49. func (mp_ptr rp, mp_srcptr up, mp_srcptr vp, mp_size_t n)
  50. {
  51.   call (rp, up, vp, n);
  52. }