code stringlengths 1 1.05M | repo_name stringlengths 6 83 | path stringlengths 3 242 | language stringclasses 222
values | license stringclasses 20
values | size int64 1 1.05M |
|---|---|---|---|---|---|
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_shift_q15.c
* Description: Shifts the elements of a Q15 vector by a specified number of bits
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cor... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/BasicMathFunctions/arm_shift_q15.c | C | apache-2.0 | 5,804 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_shift_q31.c
* Description: Shifts the elements of a Q31 vector by a specified number of bits
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cor... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/BasicMathFunctions/arm_shift_q31.c | C | apache-2.0 | 4,918 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_shift_q7.c
* Description: Processing function for the Q7 Shifting
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/BasicMathFunctions/arm_shift_q7.c | C | apache-2.0 | 4,934 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sub_f32.c
* Description: Floating-point vector subtraction
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/BasicMathFunctions/arm_sub_f32.c | C | apache-2.0 | 3,474 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sub_q15.c
* Description: Q15 vector subtraction
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/BasicMathFunctions/arm_sub_q15.c | C | apache-2.0 | 3,425 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sub_q31.c
* Description: Q31 vector subtraction
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/BasicMathFunctions/arm_sub_q31.c | C | apache-2.0 | 2,719 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sub_q7.c
* Description: Q7 vector subtraction
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/BasicMathFunctions/arm_sub_q7.c | C | apache-2.0 | 2,959 |
cmake_minimum_required (VERSION 3.6)
project(CMSISDSP)
# Needed to find the config modules
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/..)
# Select which parts of the CMSIS-DSP must be compiled.
# There are some dependencies between the parts but they are not tracked
# by this cmake. So, enabling some ... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/CMakeLists.txt | CMake | apache-2.0 | 9,699 |
cmake_minimum_required (VERSION 3.6)
project(CMSISDSPCommon)
add_library(CMSISDSPCommon STATIC arm_common_tables.c)
if (CONFIGTABLE AND ALLFFT)
target_compile_definitions(CMSISDSPCommon PUBLIC ARM_ALL_FFT_TABLES)
endif()
if (CONFIGTABLE AND ALLFAST)
target_compile_definitions(CMSISDSPCommon PUBLIC ARM_AL... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/CommonTables/CMakeLists.txt | CMake | apache-2.0 | 602 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: CommonTables.c
* Description: Combination of all common table source files.
*
* $Date: 18. March 2019
* $Revision: V1.0.0
*
* Target Processor: Cortex-M cores
* ---------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/CommonTables/CommonTables.c | C | apache-2.0 | 1,107 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_const_structs.c
* Description: Constant structs that are initialized for user convenience.
* For example, some can be given as arguments to the arm_cfft_f32() or arm_rfft_f3... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/CommonTables/arm_const_structs.c | C | apache-2.0 | 19,541 |
cmake_minimum_required (VERSION 3.6)
project(CMSISDSPComplexMath)
file(GLOB SRC "./*_*.c")
add_library(CMSISDSPComplexMath STATIC ${SRC})
configdsp(CMSISDSPComplexMath ..)
### Includes
target_include_directories(CMSISDSPComplexMath PUBLIC "${DSP}/../../Include")
| YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/CMakeLists.txt | CMake | apache-2.0 | 272 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: CompexMathFunctions.c
* Description: Combination of all comlex math function source files.
*
* $Date: 18. March 2019
* $Revision: V1.0.0
*
* Target Processor: Cortex-M cores
* ... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/ComplexMathFunctions.c | C | apache-2.0 | 1,698 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_conj_f32.c
* Description: Floating-point complex conjugate
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_conj_f32.c | C | apache-2.0 | 3,990 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_conj_q15.c
* Description: Q15 complex conjugate
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_conj_q15.c | C | apache-2.0 | 4,283 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_conj_q31.c
* Description: Q31 complex conjugate
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_conj_q31.c | C | apache-2.0 | 3,435 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_dot_prod_f32.c
* Description: Floating-point complex dot product
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_dot_prod_f32.c | C | apache-2.0 | 6,058 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_dot_prod_q15.c
* Description: Processing function for the Q15 Complex Dot product
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
*... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q15.c | C | apache-2.0 | 4,274 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_dot_prod_q31.c
* Description: Q31 complex dot product
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q31.c | C | apache-2.0 | 4,388 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mag_f32.c
* Description: Floating-point complex magnitude
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_f32.c | C | apache-2.0 | 4,700 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mag_q15.c
* Description: Q15 complex magnitude
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_q15.c | C | apache-2.0 | 4,449 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mag_q31.c
* Description: Q31 complex magnitude
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_q31.c | C | apache-2.0 | 3,569 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mag_squared_f32.c
* Description: Floating-point complex magnitude squared
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_squared_f32.c | C | apache-2.0 | 4,600 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mag_squared_q15.c
* Description: Q15 complex magnitude squared
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q15.c | C | apache-2.0 | 4,370 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mag_squared_q31.c
* Description: Q31 complex magnitude squared
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q31.c | C | apache-2.0 | 3,556 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mult_cmplx_f32.c
* Description: Floating-point complex-by-complex multiplication
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_f32.c | C | apache-2.0 | 5,229 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mult_cmplx_q15.c
* Description: Q15 complex-by-complex multiplication
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q15.c | C | apache-2.0 | 4,039 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mult_cmplx_q31.c
* Description: Q31 complex-by-complex multiplication
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q31.c | C | apache-2.0 | 4,094 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mult_real_f32.c
* Description: Floating-point complex by real multiplication
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_real_f32.c | C | apache-2.0 | 4,584 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mult_real_q15.c
* Description: Q15 complex by real multiplication
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_real_q15.c | C | apache-2.0 | 6,427 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cmplx_mult_real_q31.c
* Description: Q31 complex by real multiplication
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_real_q31.c | C | apache-2.0 | 4,859 |
cmake_minimum_required (VERSION 3.6)
project(CMSISDSPController)
add_library(CMSISDSPController STATIC)
configdsp(CMSISDSPController ..)
include(interpol)
interpol(CMSISDSPController)
if (CONFIGTABLE AND ALLFAST)
target_compile_definitions(CMSISDSPController PUBLIC ARM_ALL_FAST_TABLES)
endif()
target_source... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/CMakeLists.txt | CMake | apache-2.0 | 1,020 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: ControllerFunctions.c
* Description: Combination of all controller function source files.
*
* $Date: 18. March 2019
* $Revision: V1.0.0
*
* Target Processor: Cortex-M cores
* -... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/ControllerFunctions.c | C | apache-2.0 | 1,300 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_pid_init_f32.c
* Description: Floating-point PID Control initialization function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/arm_pid_init_f32.c | C | apache-2.0 | 2,330 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_pid_init_q15.c
* Description: Q15 PID Control initialization function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/arm_pid_init_q15.c | C | apache-2.0 | 2,816 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_pid_init_q31.c
* Description: Q31 PID Control initialization function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/arm_pid_init_q31.c | C | apache-2.0 | 2,733 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_pid_reset_f32.c
* Description: Floating-point PID Control reset function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* --------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/arm_pid_reset_f32.c | C | apache-2.0 | 1,571 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_pid_reset_q15.c
* Description: Q15 PID Control reset function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/arm_pid_reset_q15.c | C | apache-2.0 | 1,534 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_pid_reset_q31.c
* Description: Q31 PID Control reset function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/arm_pid_reset_q31.c | C | apache-2.0 | 1,534 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sin_cos_f32.c
* Description: Sine and Cosine calculation for floating-point values
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/arm_sin_cos_f32.c | C | apache-2.0 | 4,780 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sin_cos_q31.c
* Description: Cosine & Sine calculation for Q31 values
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/ControllerFunctions/arm_sin_cos_q31.c | C | apache-2.0 | 3,522 |
cmake_minimum_required (VERSION 3.6)
project(CMSISDSPFastMath)
file(GLOB SRC "./*_*.c")
add_library(CMSISDSPFastMath STATIC)
include(interpol)
interpol(CMSISDSPFastMath)
if (CONFIGTABLE AND ALLFAST)
target_compile_definitions(CMSISDSPFastMath PUBLIC ARM_ALL_FAST_TABLES)
endif()
if (NOT CONFIGTABLE OR ALLFA... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/CMakeLists.txt | CMake | apache-2.0 | 1,195 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: FastMathFunctions.c
* Description: Combination of all fast math function source files.
*
* $Date: 18. March 2019
* $Revision: V1.0.0
*
* Target Processor: Cortex-M cores
* ----... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/FastMathFunctions.c | C | apache-2.0 | 1,258 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cos_f32.c
* Description: Fast cosine calculation for floating-point values
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/arm_cos_f32.c | C | apache-2.0 | 3,541 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cos_q15.c
* Description: Fast cosine calculation for Q15 values
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/arm_cos_q15.c | C | apache-2.0 | 2,534 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_cos_q31.c
* Description: Fast cosine calculation for Q31 values
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/arm_cos_q31.c | C | apache-2.0 | 2,546 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sin_f32.c
* Description: Fast sine calculation for floating-point values
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* --------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/arm_sin_f32.c | C | apache-2.0 | 3,490 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sin_q15.c
* Description: Fast sine calculation for Q15 values
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/arm_sin_q15.c | C | apache-2.0 | 2,345 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sin_q31.c
* Description: Fast sine calculation for Q31 values
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/arm_sin_q31.c | C | apache-2.0 | 2,353 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sqrt_q15.c
* Description: Q15 square root function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/arm_sqrt_q15.c | C | apache-2.0 | 4,248 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_sqrt_q31.c
* Description: Q31 square root function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FastMathFunctions/arm_sqrt_q31.c | C | apache-2.0 | 4,267 |
cmake_minimum_required (VERSION 3.6)
project(CMSISDSPFiltering)
add_library(CMSISDSPFiltering STATIC)
include(interpol)
interpol(CMSISDSPFiltering)
configdsp(CMSISDSPFiltering ..)
if (CONFIGTABLE AND ALLFAST)
target_compile_definitions(CMSISDSPFiltering PUBLIC ARM_ALL_FAST_TABLES)
endif()
if (NOT CONFIGTABLE O... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/CMakeLists.txt | CMake | apache-2.0 | 7,067 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: FilteringFunctions.c
* Description: Combination of all filtering function source files.
*
* $Date: 18. March 2019
* $Revision: V1.0.0
*
* Target Processor: Cortex-M cores
* ---... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/FilteringFunctions.c | C | apache-2.0 | 4,539 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_32x64_init_q31.c
* Description: High precision Q31 Biquad cascade filter initialization function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target ... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_init_q31.c | C | apache-2.0 | 3,615 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_32x64_q31.c
* Description: High precision Q31 Biquad cascade filter processing function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_q31.c | C | apache-2.0 | 18,494 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_f32.c
* Description: Processing function for the floating-point Biquad cascade DirectFormI(DF1) filter
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* T... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_f32.c | C | apache-2.0 | 18,803 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_fast_q15.c
* Description: Fast processing function for the Q15 Biquad cascade filter
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q15.c | C | apache-2.0 | 9,312 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_fast_q31.c
* Description: Processing function for the Q31 Fast Biquad cascade DirectFormI(DF1) filter
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Ta... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q31.c | C | apache-2.0 | 11,053 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_init_f32.c
* Description: Floating-point Biquad cascade DirectFormI(DF1) filter initialization function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* ... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_init_f32.c | C | apache-2.0 | 3,354 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_init_q15.c
* Description: Q15 Biquad cascade DirectFormI(DF1) filter initialization function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Proc... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q15.c | C | apache-2.0 | 3,701 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_init_q31.c
* Description: Q31 Biquad cascade DirectFormI(DF1) filter initialization function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Proc... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q31.c | C | apache-2.0 | 3,538 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_q15.c
* Description: Processing function for the Q15 Biquad cascade DirectFormI(DF1) filter
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Proce... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_q15.c | C | apache-2.0 | 12,701 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df1_q31.c
* Description: Processing function for the Q31 Biquad cascade filter
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M co... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_q31.c | C | apache-2.0 | 8,635 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df2T_f32.c
* Description: Processing function for floating-point transposed direct form II Biquad cascade filter
*
* $Date: 18. March 2019
* $Revision: V1.6.0
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_f32.c | C | apache-2.0 | 11,514 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df2T_f64.c
* Description: Processing function for floating-point transposed direct form II Biquad cascade filter
*
* $Date: 18. March 2019
* $Revision: V1.6.0
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_f64.c | C | apache-2.0 | 13,152 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df2T_init_f32.c
* Description: Initialization function for floating-point transposed direct form II Biquad cascade filter
*
* $Date: 18. March 2019
* $Revision: ... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_init_f32.c | C | apache-2.0 | 6,435 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_df2T_init_f64.c
* Description: Initialization function for floating-point transposed direct form II Biquad cascade filter
*
* $Date: 18. March 2019
* $Revision: ... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_init_f64.c | C | apache-2.0 | 3,214 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_stereo_df2T_f32.c
* Description: Processing function for floating-point transposed direct form II Biquad cascade filter. 2 channels
*
* $Date: 18. March 2019
* $Re... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_stereo_df2T_f32.c | C | apache-2.0 | 8,126 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_biquad_cascade_stereo_df2T_init_f32.c
* Description: Initialization function for floating-point transposed direct form II Biquad cascade filter
*
* $Date: 18. March 2019
* $Revis... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_biquad_cascade_stereo_df2T_init_f32.c | C | apache-2.0 | 3,256 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_f32.c
* Description: Convolution of floating-point sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_f32.c | C | apache-2.0 | 23,230 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_fast_opt_q15.c
* Description: Fast Q15 Convolution
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_fast_opt_q15.c | C | apache-2.0 | 10,479 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_fast_q15.c
* Description: Fast Q15 Convolution
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_fast_q15.c | C | apache-2.0 | 20,359 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_fast_q31.c
* Description: Fast Q31 Convolution
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_fast_q31.c | C | apache-2.0 | 18,214 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_opt_q15.c
* Description: Convolution of Q15 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_opt_q15.c | C | apache-2.0 | 10,091 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_opt_q7.c
* Description: Convolution of Q7 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_opt_q7.c | C | apache-2.0 | 9,912 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_partial_f32.c
* Description: Partial convolution of floating-point sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_partial_f32.c | C | apache-2.0 | 20,375 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_partial_fast_opt_q15.c
* Description: Fast Q15 Partial convolution
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_partial_fast_opt_q15.c | C | apache-2.0 | 11,238 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_partial_fast_q15.c
* Description: Fast Q15 Partial convolution
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_partial_fast_q15.c | C | apache-2.0 | 22,229 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_partial_fast_q31.c
* Description: Fast Q31 Partial convolution
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_partial_fast_q31.c | C | apache-2.0 | 19,747 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_partial_opt_q15.c
* Description: Partial convolution of Q15 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_partial_opt_q15.c | C | apache-2.0 | 11,114 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_partial_opt_q7.c
* Description: Partial convolution of Q7 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* --------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_partial_opt_q7.c | C | apache-2.0 | 10,711 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_partial_q15.c
* Description: Partial convolution of Q15 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_partial_q15.c | C | apache-2.0 | 24,107 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_partial_q31.c
* Description: Partial convolution of Q31 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_partial_q31.c | C | apache-2.0 | 18,537 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_partial_q7.c
* Description: Partial convolution of Q7 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_partial_q7.c | C | apache-2.0 | 23,115 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_q15.c
* Description: Convolution of Q15 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* --------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_q15.c | C | apache-2.0 | 21,447 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_q31.c
* Description: Convolution of Q31 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* --------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_q31.c | C | apache-2.0 | 16,564 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_conv_q7.c
* Description: Convolution of Q7 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_conv_q7.c | C | apache-2.0 | 20,530 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_correlate_f32.c
* Description: Correlation of floating-point sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ----------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_correlate_f32.c | C | apache-2.0 | 25,889 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_correlate_fast_opt_q15.c
* Description: Fast Q15 Correlation
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* --------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_correlate_fast_opt_q15.c | C | apache-2.0 | 10,311 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_correlate_fast_q15.c
* Description: Fast Q15 Correlation
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_correlate_fast_q15.c | C | apache-2.0 | 18,934 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_correlate_fast_q31.c
* Description: Fast Q31 Correlation
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ------------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_correlate_fast_q31.c | C | apache-2.0 | 19,245 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_correlate_opt_q15.c
* Description: Correlation of Q15 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_correlate_opt_q15.c | C | apache-2.0 | 9,902 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_correlate_opt_q7.c
* Description: Correlation of Q7 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_correlate_opt_q7.c | C | apache-2.0 | 11,185 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_correlate_q15.c
* Description: Correlation of Q15 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_correlate_q15.c | C | apache-2.0 | 21,760 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_correlate_q31.c
* Description: Correlation of Q31 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_correlate_q31.c | C | apache-2.0 | 20,085 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_correlate_q7.c
* Description: Correlation of Q7 sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -----------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_correlate_q7.c | C | apache-2.0 | 23,615 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_fir_decimate_f32.c
* Description: FIR decimation for floating-point sequences
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* ---------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_fir_decimate_f32.c | C | apache-2.0 | 20,866 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_fir_decimate_fast_q15.c
* Description: Fast Q15 FIR Decimator
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_fir_decimate_fast_q15.c | C | apache-2.0 | 15,852 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_fir_decimate_fast_q31.c
* Description: Fast Q31 FIR Decimator
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M cores
* -------------------------... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_fir_decimate_fast_q31.c | C | apache-2.0 | 11,800 |
/* ----------------------------------------------------------------------
* Project: CMSIS DSP Library
* Title: arm_fir_decimate_init_f32.c
* Description: Floating-point FIR Decimator initialization function
*
* $Date: 18. March 2019
* $Revision: V1.6.0
*
* Target Processor: Cortex-M core... | YifuLiu/AliOS-Things | components/cmsis/DSP/Source/FilteringFunctions/arm_fir_decimate_init_f32.c | C | apache-2.0 | 3,347 |