From 96d6da4e252b06dcfdc041e7df23e86161c33007 Mon Sep 17 00:00:00 2001 From: rihab kouki Date: Tue, 28 Jul 2020 11:24:49 +0100 Subject: Official ARM version: v5.6.0 --- docs/DSP/html/group__copy.html | 90 ++++++++++++++++++------------------------ 1 file changed, 39 insertions(+), 51 deletions(-) (limited to 'docs/DSP/html/group__copy.html') diff --git a/docs/DSP/html/group__copy.html b/docs/DSP/html/group__copy.html index d2c83e0..f999381 100644 --- a/docs/DSP/html/group__copy.html +++ b/docs/DSP/html/group__copy.html @@ -32,7 +32,7 @@ Logo
CMSIS-DSP -  Version 1.5.2 +  Version 1.7.0
CMSIS DSP Software Library
@@ -116,33 +116,33 @@ $(document).ready(function(){initNavTree('group__copy.html','');}); - - - - - - - - - - - - + + + + + + + + + + + +

Functions

void arm_copy_f32 (float32_t *pSrc, float32_t *pDst, uint32_t blockSize)
 Copies the elements of a floating-point vector. More...
 
void arm_copy_q15 (q15_t *pSrc, q15_t *pDst, uint32_t blockSize)
 Copies the elements of a Q15 vector. More...
 
void arm_copy_q31 (q31_t *pSrc, q31_t *pDst, uint32_t blockSize)
 Copies the elements of a Q31 vector. More...
 
void arm_copy_q7 (q7_t *pSrc, q7_t *pDst, uint32_t blockSize)
 Copies the elements of a Q7 vector. More...
 
void arm_copy_f32 (const float32_t *pSrc, float32_t *pDst, uint32_t blockSize)
 Copies the elements of a floating-point vector. More...
 
void arm_copy_q15 (const q15_t *pSrc, q15_t *pDst, uint32_t blockSize)
 Copies the elements of a Q15 vector. More...
 
void arm_copy_q31 (const q31_t *pSrc, q31_t *pDst, uint32_t blockSize)
 Copies the elements of a Q31 vector. More...
 
void arm_copy_q7 (const q7_t *pSrc, q7_t *pDst, uint32_t blockSize)
 Copies the elements of a Q7 vector. More...
 

Description

Copies sample by sample from source vector to destination vector.

-        pDst[n] = pSrc[n];   0 <= n < blockSize.
+    pDst[n] = pSrc[n];   0 <= n < blockSize.
 

There are separate functions for floating point, Q31, Q15, and Q7 data types.

Function Documentation

- +
- + @@ -166,28 +166,24 @@ Functions
Parameters
void arm_copy_f32 (float32_tconst float32_t pSrc,
- - - + + +
[in]*pSrcpoints to input vector
[out]*pDstpoints to output vector
[in]blockSizelength of the input vector
[in]pSrcpoints to input vector
[out]pDstpoints to output vector
[in]blockSizenumber of samples in each vector
-
Returns
none.
- -

References blockSize.

- -

Referenced by main().

+
Returns
none
- +
- + @@ -211,28 +207,24 @@ Functions
Parameters
void arm_copy_q15 (q15_tconst q15_t pSrc,
- - - + + +
[in]*pSrcpoints to input vector
[out]*pDstpoints to output vector
[in]blockSizelength of the input vector
[in]pSrcpoints to input vector
[out]pDstpoints to output vector
[in]blockSizenumber of samples in each vector
-
Returns
none.
- -

References __SIMD32, and blockSize.

- -

Referenced by arm_conv_fast_opt_q15(), arm_conv_opt_q15(), arm_conv_partial_fast_opt_q15(), arm_conv_partial_opt_q15(), arm_correlate_fast_opt_q15(), and arm_correlate_opt_q15().

+
Returns
none
- +
- + @@ -256,26 +248,24 @@ Functions
Parameters
void arm_copy_q31 (q31_tconst q31_t pSrc,
- - - + + +
[in]*pSrcpoints to input vector
[out]*pDstpoints to output vector
[in]blockSizelength of the input vector
[in]pSrcpoints to input vector
[out]pDstpoints to output vector
[in]blockSizenumber of samples in each vector
-
Returns
none.
- -

References blockSize.

+
Returns
none
- +
- + @@ -299,15 +289,13 @@ Functions
Parameters
void arm_copy_q7 (q7_tconst q7_t pSrc,
- - - + + +
[in]*pSrcpoints to input vector
[out]*pDstpoints to output vector
[in]blockSizelength of the input vector
[in]pSrcpoints to input vector
[out]pDstpoints to output vector
[in]blockSizenumber of samples in each vector
-
Returns
none.
- -

References __SIMD32, and blockSize.

+
Returns
none
@@ -316,7 +304,7 @@ Functions