| 
    Zephyr Project API
    3.3.0
    
   A Scalable Open Source RTOS 
   | 
 
Functions | |
| DSP_FUNC_SCOPE void | zdsp_offset_f32 (const float32_t *src, float32_t offset, float32_t *dst, uint32_t block_size) | 
| Adds a constant offset to a floating-point vector.  More... | |
| DSP_FUNC_SCOPE void | zdsp_offset_q7 (const q7_t *src, q7_t offset, q7_t *dst, uint32_t block_size) | 
| Adds a constant offset to a Q7 vector.  More... | |
| DSP_FUNC_SCOPE void | zdsp_offset_q15 (const q15_t *src, q15_t offset, q15_t *dst, uint32_t block_size) | 
| Adds a constant offset to a Q15 vector.  More... | |
| DSP_FUNC_SCOPE void | zdsp_offset_q31 (const q31_t *src, q31_t offset, q31_t *dst, uint32_t block_size) | 
| Adds a constant offset to a Q31 vector.  More... | |
| DSP_FUNC_SCOPE void | zdsp_offset_f16 (const float16_t *src, float16_t offset, float16_t *dst, uint32_t block_size) | 
| Adds a constant offset to a floating-point vector.  More... | |
Adds a constant offset to each element of a vector.
    dst[n] = src[n] + offset,   0 <= n < block_size.
The functions support in-place computation allowing the source and destination pointers to reference the same memory buffer. There are separate functions for floating-point, Q7, Q15, and Q31 data types.
| DSP_FUNC_SCOPE void zdsp_offset_f16 | ( | const float16_t * | src, | 
| float16_t | offset, | ||
| float16_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath_f16.h>
Adds a constant offset to a floating-point vector.
| [in] | src | points to the input vector | 
| [in] | offset | is the offset to be added | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in the vector | 
| DSP_FUNC_SCOPE void zdsp_offset_f32 | ( | const float32_t * | src, | 
| float32_t | offset, | ||
| float32_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Adds a constant offset to a floating-point vector.
| [in] | src | points to the input vector | 
| [in] | offset | is the offset to be added | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in the vector | 
| DSP_FUNC_SCOPE void zdsp_offset_q15 | ( | const q15_t * | src, | 
| q15_t | offset, | ||
| q15_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Adds a constant offset to a Q15 vector.
| [in] | src | points to the input vector | 
| [in] | offset | is the offset to be added | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in the vector | 
| DSP_FUNC_SCOPE void zdsp_offset_q31 | ( | const q31_t * | src, | 
| q31_t | offset, | ||
| q31_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Adds a constant offset to a Q31 vector.
| [in] | src | points to the input vector | 
| [in] | offset | is the offset to be added | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in the vector | 
| DSP_FUNC_SCOPE void zdsp_offset_q7 | ( | const q7_t * | src, | 
| q7_t | offset, | ||
| q7_t * | dst, | ||
| uint32_t | block_size | ||
| ) | 
#include <include/zephyr/dsp/basicmath.h>
Adds a constant offset to a Q7 vector.
| [in] | src | points to the input vector | 
| [in] | offset | is the offset to be added | 
| [out] | dst | points to the output vector | 
| [in] | block_size | number of samples in the vector |