arm_copy_q31.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* ----------------------------------------------------------------------
  2. * Project: CMSIS DSP Library
  3. * Title: arm_copy_q31.c
  4. * Description: Copies the elements of a Q31 vector
  5. *
  6. * $Date: 27. January 2017
  7. * $Revision: V.1.5.1
  8. *
  9. * Target Processor: Cortex-M cores
  10. * -------------------------------------------------------------------- */
  11. /*
  12. * Copyright (C) 2010-2017 ARM Limited or its affiliates. All rights reserved.
  13. *
  14. * SPDX-License-Identifier: Apache-2.0
  15. *
  16. * Licensed under the Apache License, Version 2.0 (the License); you may
  17. * not use this file except in compliance with the License.
  18. * You may obtain a copy of the License at
  19. *
  20. * www.apache.org/licenses/LICENSE-2.0
  21. *
  22. * Unless required by applicable law or agreed to in writing, software
  23. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  24. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  25. * See the License for the specific language governing permissions and
  26. * limitations under the License.
  27. */
  28. #include "arm_math.h"
  29. /**
  30. * @ingroup groupSupport
  31. */
  32. /**
  33. * @addtogroup copy
  34. * @{
  35. */
  36. /**
  37. * @brief Copies the elements of a Q31 vector.
  38. * @param[in] *pSrc points to input vector
  39. * @param[out] *pDst points to output vector
  40. * @param[in] blockSize length of the input vector
  41. * @return none.
  42. *
  43. */
  44. void arm_copy_q31(
  45. q31_t * pSrc,
  46. q31_t * pDst,
  47. uint32_t blockSize)
  48. {
  49. uint32_t blkCnt; /* loop counter */
  50. #if defined (ARM_MATH_DSP)
  51. /* Run the below code for Cortex-M4 and Cortex-M3 */
  52. q31_t in1, in2, in3, in4;
  53. /*loop Unrolling */
  54. blkCnt = blockSize >> 2U;
  55. /* First part of the processing with loop unrolling. Compute 4 outputs at a time.
  56. ** a second loop below computes the remaining 1 to 3 samples. */
  57. while (blkCnt > 0U)
  58. {
  59. /* C = A */
  60. /* Copy and then store the values in the destination buffer */
  61. in1 = *pSrc++;
  62. in2 = *pSrc++;
  63. in3 = *pSrc++;
  64. in4 = *pSrc++;
  65. *pDst++ = in1;
  66. *pDst++ = in2;
  67. *pDst++ = in3;
  68. *pDst++ = in4;
  69. /* Decrement the loop counter */
  70. blkCnt--;
  71. }
  72. /* If the blockSize is not a multiple of 4, compute any remaining output samples here.
  73. ** No loop unrolling is used. */
  74. blkCnt = blockSize % 0x4U;
  75. #else
  76. /* Run the below code for Cortex-M0 */
  77. /* Loop over blockSize number of values */
  78. blkCnt = blockSize;
  79. #endif /* #if defined (ARM_MATH_DSP) */
  80. while (blkCnt > 0U)
  81. {
  82. /* C = A */
  83. /* Copy and then store the value in the destination buffer */
  84. *pDst++ = *pSrc++;
  85. /* Decrement the loop counter */
  86. blkCnt--;
  87. }
  88. }
  89. /**
  90. * @} end of BasicCopy group
  91. */