00001 /* ---------------------------------------------------------------------- 00002 * Copyright (C) 2011 ARM Limited. All rights reserved. 00003 * 00004 * $Date: 15. December 2011 00005 * $Revision: V2.0.0 00006 * 00007 * Project: Cortex-R DSP Library 00008 * Title: arm_copy_q15.c 00009 * 00010 * Description: Copies the elements of a Q15 vector. 00011 * 00012 * Target Processor: Cortex-R4/R5 00013 * 00014 * Version 1.0.0 2011/03/08 00015 * Alpha release. 00016 * 00017 * Version 1.0.1 2011/09/30 00018 * Beta release. 00019 * 00020 * Version 2.0.0 2011/12/15 00021 * Final release. 00022 * 00023 * -------------------------------------------------------------------- */ 00024 #include "arm_math.h" 00025 00047 void arm_copy_q15( 00048 q15_t * pSrc, 00049 q15_t * pDst, 00050 uint32_t blockSize) 00051 { 00052 uint32_t blkCnt; /* loop counter */ 00053 00054 00055 /*loop Unrolling */ 00056 blkCnt = blockSize >> 3u; 00057 00058 /* First part of the processing with loop unrolling. Compute 8 outputs at a time. 00059 ** a second loop below computes the remaining 1 to 7 samples. */ 00060 while(blkCnt > 0u) 00061 { 00062 /* C = A */ 00063 /* Read two inputs */ 00064 *__SIMD32(pDst)++ = *__SIMD32(pSrc)++; 00065 *__SIMD32(pDst)++ = *__SIMD32(pSrc)++; 00066 *__SIMD32(pDst)++ = *__SIMD32(pSrc)++; 00067 *__SIMD32(pDst)++ = *__SIMD32(pSrc)++; 00068 00069 /* Decrement the loop counter */ 00070 blkCnt--; 00071 } 00072 00073 /* If the blockSize is not a multiple of 8, compute any remaining output samples here. 00074 ** No loop unrolling is used. */ 00075 blkCnt = blockSize % 0x8u; 00076 00077 while(blkCnt > 0u) 00078 { 00079 /* C = A */ 00080 /* Copy and then store the value in the destination buffer */ 00081 *pDst++ = *pSrc++; 00082 00083 /* Decrement the loop counter */ 00084 blkCnt--; 00085 } 00086 } 00087