Home
last modified time | relevance | path

Searched refs:tap_count (Results 1 – 9 of 9) sorted by relevance

/Zephyr-latest/tests/lib/cmsis_dsp/filtering/src/
Dfir_f16.c24 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()
Dfir_f32.c24 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()
Dfir_q15.c24 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()
Dfir_q7.c24 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()
Dfir_q31.c24 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()
Ddecim_q31.c22 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()
Ddecim_q15.c22 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()
Ddecim_f32.c22 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/
Dfetch_and_get.rst74 .. literalinclude:: tap_count.c