/Zephyr-latest/tests/lib/cmsis_dsp/filtering/src/ |
D | fir_f16.c | 24 size_t block_size, tap_count; in ZTEST() local 51 tap_count = config[1]; in ZTEST() 56 round = tap_count / COEFF_PADDING; in ZTEST() 57 if ((round * COEFF_PADDING) < tap_count) { in ZTEST() 62 memcpy(coeff_padded, coeff, tap_count * sizeof(float16_t)); in ZTEST() 67 arm_fir_init_f16(&inst, tap_count, coeff_padded, state, block_size); in ZTEST() 69 arm_fir_init_f16(&inst, tap_count, coeff, state, block_size); in ZTEST() 86 coeff += tap_count; in ZTEST()
|
D | fir_f32.c | 24 size_t block_size, tap_count; in ZTEST() local 51 tap_count = config[1]; in ZTEST() 56 round = tap_count / COEFF_PADDING; in ZTEST() 57 if ((round * COEFF_PADDING) < tap_count) { in ZTEST() 62 memcpy(coeff_padded, coeff, tap_count * sizeof(float32_t)); in ZTEST() 67 arm_fir_init_f32(&inst, tap_count, coeff_padded, state, block_size); in ZTEST() 69 arm_fir_init_f32(&inst, tap_count, coeff, state, block_size); in ZTEST() 86 coeff += tap_count; in ZTEST()
|
D | fir_q15.c | 24 size_t block_size, tap_count; in ZTEST() local 51 tap_count = config[1]; in ZTEST() 56 round = tap_count / COEFF_PADDING; in ZTEST() 57 if ((round * COEFF_PADDING) < tap_count) { in ZTEST() 62 memcpy(coeff_padded, coeff, tap_count * sizeof(q15_t)); in ZTEST() 67 arm_fir_init_q15(&inst, tap_count, coeff_padded, state, block_size); in ZTEST() 69 arm_fir_init_q15(&inst, tap_count, coeff, state, block_size); in ZTEST() 86 coeff += tap_count; in ZTEST()
|
D | fir_q7.c | 24 size_t block_size, tap_count; in ZTEST() local 51 tap_count = config[1]; in ZTEST() 56 round = tap_count / COEFF_PADDING; in ZTEST() 57 if ((round * COEFF_PADDING) < tap_count) { in ZTEST() 62 memcpy(coeff_padded, coeff, tap_count * sizeof(q7_t)); in ZTEST() 67 arm_fir_init_q7(&inst, tap_count, coeff_padded, state, block_size); in ZTEST() 69 arm_fir_init_q7(&inst, tap_count, coeff, state, block_size); in ZTEST() 86 coeff += tap_count; in ZTEST()
|
D | fir_q31.c | 24 size_t block_size, tap_count; in ZTEST() local 51 tap_count = config[1]; in ZTEST() 56 round = tap_count / COEFF_PADDING; in ZTEST() 57 if ((round * COEFF_PADDING) < tap_count) { in ZTEST() 62 memcpy(coeff_padded, coeff, tap_count * sizeof(q31_t)); in ZTEST() 67 arm_fir_init_q31(&inst, tap_count, coeff_padded, state, block_size); in ZTEST() 69 arm_fir_init_q31(&inst, tap_count, coeff, state, block_size); in ZTEST() 86 coeff += tap_count; in ZTEST()
|
D | decim_q31.c | 22 uint32_t decim_factor, tap_count; in ZTEST() local 47 tap_count = config[1]; in ZTEST() 52 status = arm_fir_decimate_init_q31(&inst, tap_count, in ZTEST() 65 coeff += tap_count; in ZTEST() 86 uint32_t filter_length, tap_count; in ZTEST() local 111 tap_count = config[1]; in ZTEST() 117 tap_count, coeff, in ZTEST() 129 coeff += tap_count; in ZTEST()
|
D | decim_q15.c | 22 uint32_t decim_factor, tap_count; in ZTEST() local 47 tap_count = config[1]; in ZTEST() 52 status = arm_fir_decimate_init_q15(&inst, tap_count, in ZTEST() 65 coeff += tap_count; in ZTEST() 86 uint32_t filter_length, tap_count; in ZTEST() local 111 tap_count = config[1]; in ZTEST() 117 tap_count, coeff, in ZTEST() 129 coeff += tap_count; in ZTEST()
|
D | decim_f32.c | 22 uint32_t decim_factor, tap_count; in ZTEST() local 47 tap_count = config[1]; in ZTEST() 52 status = arm_fir_decimate_init_f32(&inst, tap_count, in ZTEST() 65 coeff += tap_count; in ZTEST() 85 uint32_t filter_length, tap_count; in ZTEST() local 110 tap_count = config[1]; in ZTEST() 116 tap_count, coeff, in ZTEST() 128 coeff += tap_count; in ZTEST()
|
/Zephyr-latest/doc/hardware/peripherals/sensor/ |
D | fetch_and_get.rst | 74 .. literalinclude:: tap_count.c
|