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_fill_q7.c 00009 * 00010 * Description: Fills a constant value into a Q7 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 00048 void arm_fill_q7( 00049 q7_t value, 00050 q7_t * pDst, 00051 uint32_t blockSize) 00052 { 00053 uint32_t blkCnt; /* loop counter */ 00054 q31_t packedValue; /* value packed to 32 bits */ 00055 00056 /*loop Unrolling */ 00057 blkCnt = blockSize >> 3u; 00058 00059 /* Packing four 8 bit values to 32 bit value in order to use SIMD */ 00060 packedValue = __PACKq7(value, value, value, value); 00061 00062 /* First part of the processing with loop unrolling. Compute 8 outputs at a time. 00063 ** a second loop below computes the remaining 1 to 8 samples. */ 00064 while(blkCnt > 0u) 00065 { 00066 /* C = value */ 00067 /* Fill the value in the destination buffer */ 00068 *__SIMD32(pDst)++ = packedValue; 00069 *__SIMD32(pDst)++ = packedValue; 00070 00071 /* Decrement the loop counter */ 00072 blkCnt--; 00073 } 00074 00075 /* If the blockSize is not a multiple of 8, compute any remaining output samples here. 00076 ** No loop unrolling is used. */ 00077 blkCnt = blockSize % 0x8u; 00078 00079 while(blkCnt > 0u) 00080 { 00081 /* C = value */ 00082 /* Fill the value in the destination buffer */ 00083 *pDst++ = value; 00084 00085 /* Decrement the loop counter */ 00086 blkCnt--; 00087 } 00088 } 00089