| 
    Zephyr Project API
    3.4.0
    
   A Scalable Open Source RTOS 
   | 
 
Functions | |
| DSP_FUNC_SCOPE void | zdsp_add_f32 (const DSP_DATA float32_t *src_a, const DSP_DATA float32_t *src_b, DSP_DATA float32_t *dst, uint32_t block_size) | 
| Floating-point vector addition.  More... | |
| DSP_FUNC_SCOPE void | zdsp_add_q7 (const DSP_DATA q7_t *src_a, const DSP_DATA q7_t *src_b, DSP_DATA q7_t *dst, uint32_t block_size) | 
| Q7 vector addition.  More... | |
| DSP_FUNC_SCOPE void | zdsp_add_q15 (const DSP_DATA q15_t *src_a, const DSP_DATA q15_t *src_b, DSP_DATA q15_t *dst, uint32_t block_size) | 
| Q15 vector addition.  More... | |
| DSP_FUNC_SCOPE void | zdsp_add_q31 (const DSP_DATA q31_t *src_a, const DSP_DATA q31_t *src_b, DSP_DATA q31_t *dst, uint32_t block_size) | 
| Q31 vector addition.  More... | |
| DSP_FUNC_SCOPE void | zdsp_add_f16 (const float16_t *src_a, const float16_t *src_b, float16_t *dst, uint32_t block_size) | 
| Floating-point vector addition.  More... | |
Element-by-element addition of two vectors.
    dst[n] = src_a[n] + src_b[n],   0 <= n < block_size.
There are separate functions for floating-point, Q7, Q15, and Q31 data types.
| DSP_FUNC_SCOPE void zdsp_add_f16 | ( | const float16_t * | src_a, | 
| const float16_t * | src_b, | ||
| float16_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath_f16.h>
Floating-point vector addition.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_add_f32 | ( | const DSP_DATA float32_t * | src_a, | 
| const DSP_DATA float32_t * | src_b, | ||
| DSP_DATA float32_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Floating-point vector addition.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_add_q15 | ( | const DSP_DATA q15_t * | src_a, | 
| const DSP_DATA q15_t * | src_b, | ||
| DSP_DATA q15_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Q15 vector addition.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_add_q31 | ( | const DSP_DATA q31_t * | src_a, | 
| const DSP_DATA q31_t * | src_b, | ||
| DSP_DATA q31_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Q31 vector addition.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector | 
| DSP_FUNC_SCOPE void zdsp_add_q7 | ( | const DSP_DATA q7_t * | src_a, | 
| const DSP_DATA q7_t * | src_b, | ||
| DSP_DATA q7_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Q7 vector addition.
| [in] | src_a | points to the first input vector | 
| [in] | src_b | points to the second input vector | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in each vector |