Home
last modified time | relevance | path

Searched refs:tapCnt (Results 1 – 25 of 37) sorted by relevance

12

/hal_nxp-latest/mcux/mcux-sdk/CMSIS/DSP/Source/FilteringFunctions/
Darm_lms_f32.c180 uint32_t tapCnt, blkCnt; /* Loop counters */ in arm_lms_f32() local
212 tapCnt = numTaps >> 2; in arm_lms_f32()
214 while (tapCnt > 0U) in arm_lms_f32()
225 tapCnt--; in arm_lms_f32()
232 tapCnt = numTaps % 0x4U; in arm_lms_f32()
234 while (tapCnt > 0U) in arm_lms_f32()
240 tapCnt--; in arm_lms_f32()
261 tapCnt = numTaps >> 2; in arm_lms_f32()
264 while (tapCnt > 0U) in arm_lms_f32()
277 tapCnt--; in arm_lms_f32()
[all …]
Darm_lms_norm_f32.c174 uint32_t tapCnt, blkCnt; /* Loop counters */ in arm_lms_norm_f32() local
220 tapCnt = numTaps >> 2; in arm_lms_norm_f32()
222 while (tapCnt > 0U) in arm_lms_norm_f32()
233 tapCnt--; in arm_lms_norm_f32()
239 tapCnt = numTaps % 0x4U; in arm_lms_norm_f32()
241 while (tapCnt > 0U) in arm_lms_norm_f32()
247 tapCnt--; in arm_lms_norm_f32()
269 tapCnt = numTaps >> 2; in arm_lms_norm_f32()
272 while (tapCnt > 0U) in arm_lms_norm_f32()
285 tapCnt--; in arm_lms_norm_f32()
[all …]
Darm_fir_interpolate_f32.c146 uint32_t tapCnt; in arm_fir_interpolate2_f32_mve() local
184 tapCnt = phaseLen >> 2; in arm_fir_interpolate2_f32_mve()
185 while (tapCnt > 0U) in arm_fir_interpolate2_f32_mve()
202 tapCnt--; in arm_fir_interpolate2_f32_mve()
205 tapCnt = phaseLen & 3; in arm_fir_interpolate2_f32_mve()
206 if (tapCnt > 0U) in arm_fir_interpolate2_f32_mve()
208 mve_pred16_t p0 = vctp32q(tapCnt); in arm_fir_interpolate2_f32_mve()
269 uint32_t tapCnt; in arm_fir_interpolate_f32() local
322 tapCnt = phaseLen >> 2; in arm_fir_interpolate_f32()
323 while (tapCnt > 0U) in arm_fir_interpolate_f32()
[all …]
Darm_fir_interpolate_q15.c123 uint32_t tapCnt = phaseLen >> 3; in arm_fir_interpolate_q15() local
124 while (tapCnt > 0U) in arm_fir_interpolate_q15()
142 tapCnt--; in arm_fir_interpolate_q15()
144 tapCnt = phaseLen & 7; in arm_fir_interpolate_q15()
145 if (tapCnt > 0U) in arm_fir_interpolate_q15()
147 mve_pred16_t p0 = vctp16q(tapCnt); in arm_fir_interpolate_q15()
186 uint32_t tapCnt = phaseLen >> 3; in arm_fir_interpolate_q15() local
187 while (tapCnt > 0U) in arm_fir_interpolate_q15()
202 tapCnt--; in arm_fir_interpolate_q15()
204 tapCnt = phaseLen & 7; in arm_fir_interpolate_q15()
[all …]
Darm_fir_interpolate_q31.c120 uint32_t tapCnt = phaseLen >> 2; in arm_fir_interpolate_q31() local
121 while (tapCnt > 0U) in arm_fir_interpolate_q31()
139 tapCnt--; in arm_fir_interpolate_q31()
141 tapCnt = phaseLen & 3; in arm_fir_interpolate_q31()
142 if (tapCnt > 0U) in arm_fir_interpolate_q31()
144 mve_pred16_t p0 = vctp32q(tapCnt); in arm_fir_interpolate_q31()
183 uint32_t tapCnt = phaseLen >> 2; in arm_fir_interpolate_q31() local
184 while (tapCnt > 0U) in arm_fir_interpolate_q31()
199 tapCnt--; in arm_fir_interpolate_q31()
201 tapCnt = phaseLen & 3; in arm_fir_interpolate_q31()
[all …]
Darm_fir_decimate_f32.c142 uint32_t i, tapCnt, blkCnt, outBlockSize = blockSize / S->M; /* Loop counters */ in arm_fir_decimate_f32() local
197 tapCnt = numTaps >> 2; in arm_fir_decimate_f32()
202 while (tapCnt > 0U) in arm_fir_decimate_f32()
228 tapCnt--; in arm_fir_decimate_f32()
235 tapCnt = numTaps % 0x4U; in arm_fir_decimate_f32()
236 if (tapCnt > 0U) in arm_fir_decimate_f32()
238 mve_pred16_t p0 = vctp32q(tapCnt); in arm_fir_decimate_f32()
311 tapCnt = numTaps >> 2; in arm_fir_decimate_f32()
316 while (tapCnt > 0U) in arm_fir_decimate_f32()
326 tapCnt--; in arm_fir_decimate_f32()
[all …]
Darm_fir_decimate_q15.c75 uint32_t i, tapCnt, blkCnt, outBlockSize = blockSize / S->M; /* Loop counters */ in arm_fir_decimate_q15() local
142 tapCnt = numTaps >> 3; in arm_fir_decimate_q15()
147 while (tapCnt > 0U) in arm_fir_decimate_q15()
173 tapCnt--; in arm_fir_decimate_q15()
180 tapCnt = numTaps & 7; in arm_fir_decimate_q15()
181 if (tapCnt > 0U) in arm_fir_decimate_q15()
183 mve_pred16_t p0 = vctp16q(tapCnt); in arm_fir_decimate_q15()
254 tapCnt = numTaps >> 3; in arm_fir_decimate_q15()
255 while (tapCnt > 0U) in arm_fir_decimate_q15()
265 tapCnt--; in arm_fir_decimate_q15()
[all …]
Darm_fir_decimate_fast_q15.c79 uint32_t i, blkCnt, tapCnt, outBlockSize = blockSize / S->M; /* Loop counters */ in arm_fir_decimate_fast_q15() local
118 tapCnt = numTaps >> 2U; in arm_fir_decimate_fast_q15()
120 while (tapCnt > 0U) in arm_fir_decimate_fast_q15()
145 tapCnt--; in arm_fir_decimate_fast_q15()
149 tapCnt = numTaps % 0x4U; in arm_fir_decimate_fast_q15()
154 tapCnt = numTaps; in arm_fir_decimate_fast_q15()
158 while (tapCnt > 0U) in arm_fir_decimate_fast_q15()
172 tapCnt--; in arm_fir_decimate_fast_q15()
211 tapCnt = numTaps >> 2U; in arm_fir_decimate_fast_q15()
213 while (tapCnt > 0U) in arm_fir_decimate_fast_q15()
[all …]
Darm_fir_decimate_q31.c74 uint32_t i, tapCnt, blkCnt, outBlockSize = blockSize / S->M; /* Loop counters */ in arm_fir_decimate_q31() local
128 tapCnt = numTaps >> 2; in arm_fir_decimate_q31()
133 while (tapCnt > 0U) in arm_fir_decimate_q31()
159 tapCnt--; in arm_fir_decimate_q31()
166 tapCnt = numTaps % 0x4U; in arm_fir_decimate_q31()
167 if (tapCnt > 0U) in arm_fir_decimate_q31()
169 mve_pred16_t p0 = vctp32q(tapCnt); in arm_fir_decimate_q31()
242 tapCnt = numTaps >> 2; in arm_fir_decimate_q31()
247 while (tapCnt > 0U) in arm_fir_decimate_q31()
257 tapCnt--; in arm_fir_decimate_q31()
[all …]
Darm_lms_q15.c76 uint32_t tapCnt, blkCnt; /* Loop counters */ in arm_lms_q15() local
109 tapCnt = numTaps >> 2U; in arm_lms_q15()
111 while (tapCnt > 0U) in arm_lms_q15()
119 tapCnt--; in arm_lms_q15()
123 tapCnt = numTaps % 0x4U; in arm_lms_q15()
128 tapCnt = numTaps; in arm_lms_q15()
132 while (tapCnt > 0U) in arm_lms_q15()
138 tapCnt--; in arm_lms_q15()
173 tapCnt = numTaps >> 2U; in arm_lms_q15()
176 while (tapCnt > 0U) in arm_lms_q15()
[all …]
Darm_lms_q31.c80 uint32_t tapCnt, blkCnt; /* Loop counters */ in arm_lms_q31() local
113 tapCnt = numTaps >> 2U; in arm_lms_q31()
115 while (tapCnt > 0U) in arm_lms_q31()
131 tapCnt--; in arm_lms_q31()
135 tapCnt = numTaps % 0x4U; in arm_lms_q31()
140 tapCnt = numTaps; in arm_lms_q31()
144 while (tapCnt > 0U) in arm_lms_q31()
150 tapCnt--; in arm_lms_q31()
182 tapCnt = numTaps >> 2U; in arm_lms_q31()
185 while (tapCnt > 0U) in arm_lms_q31()
[all …]
Darm_lms_norm_q15.c79 uint32_t tapCnt, blkCnt; /* Loop counters */ in arm_lms_norm_q15() local
126 tapCnt = numTaps >> 2U; in arm_lms_norm_q15()
128 while (tapCnt > 0U) in arm_lms_norm_q15()
136 tapCnt--; in arm_lms_norm_q15()
140 tapCnt = numTaps % 0x4U; in arm_lms_norm_q15()
145 tapCnt = numTaps; in arm_lms_norm_q15()
149 while (tapCnt > 0U) in arm_lms_norm_q15()
155 tapCnt--; in arm_lms_norm_q15()
199 tapCnt = numTaps >> 2U; in arm_lms_norm_q15()
202 while (tapCnt > 0U) in arm_lms_norm_q15()
[all …]
Darm_lms_norm_q31.c79 uint32_t tapCnt, blkCnt; /* Loop counters */ in arm_lms_norm_q31() local
126 tapCnt = numTaps >> 2U; in arm_lms_norm_q31()
128 while (tapCnt > 0U) in arm_lms_norm_q31()
144 tapCnt--; in arm_lms_norm_q31()
148 tapCnt = numTaps % 0x4U; in arm_lms_norm_q31()
153 tapCnt = numTaps; in arm_lms_norm_q31()
157 while (tapCnt > 0U) in arm_lms_norm_q31()
163 tapCnt--; in arm_lms_norm_q31()
200 tapCnt = numTaps >> 2U; in arm_lms_norm_q31()
203 while (tapCnt > 0U) in arm_lms_norm_q31()
[all …]
Darm_iir_lattice_q31.c68 uint32_t blkCnt, tapCnt; /* Temporary variables for counts */ in arm_iir_lattice_q31() local
119 tapCnt = (numStages - 1U) >> 2U; in arm_iir_lattice_q31()
121 while (tapCnt > 0U) in arm_iir_lattice_q31()
180 tapCnt--; in arm_iir_lattice_q31()
186 tapCnt = (numStages - 1U) % 0x4U; in arm_iir_lattice_q31()
191 tapCnt = (numStages - 1U); in arm_iir_lattice_q31()
195 while (tapCnt > 0U) in arm_iir_lattice_q31()
208 tapCnt--; in arm_iir_lattice_q31()
237 tapCnt = numStages >> 2U; in arm_iir_lattice_q31()
239 while (tapCnt > 0U) in arm_iir_lattice_q31()
[all …]
Darm_iir_lattice_q15.c69 uint32_t blkCnt, tapCnt; /* Temporary variables for counts */ in arm_iir_lattice_q15() local
127 tapCnt = (numStages - 1U) >> 2U; in arm_iir_lattice_q15()
129 while (tapCnt > 0U) in arm_iir_lattice_q15()
216 tapCnt--; in arm_iir_lattice_q15()
222 tapCnt = (numStages - 1U) % 0x4U; in arm_iir_lattice_q15()
227 tapCnt = (numStages - 1U); in arm_iir_lattice_q15()
231 while (tapCnt > 0U) in arm_iir_lattice_q15()
246 tapCnt--; in arm_iir_lattice_q15()
276 tapCnt = numStages >> 2U; in arm_iir_lattice_q15()
278 while (tapCnt > 0U) in arm_iir_lattice_q15()
[all …]
Darm_fir_decimate_fast_q31.c76 uint32_t i, tapCnt, blkCnt, outBlockSize = blockSize / S->M; /* Loop counters */ in arm_fir_decimate_fast_q31() local
121 tapCnt = numTaps >> 2U; in arm_fir_decimate_fast_q31()
123 while (tapCnt > 0U) in arm_fir_decimate_fast_q31()
189 tapCnt--; in arm_fir_decimate_fast_q31()
193 tapCnt = numTaps % 0x4U; in arm_fir_decimate_fast_q31()
195 while (tapCnt > 0U) in arm_fir_decimate_fast_q31()
213 tapCnt--; in arm_fir_decimate_fast_q31()
263 tapCnt = numTaps >> 2U; in arm_fir_decimate_fast_q31()
265 while (tapCnt > 0U) in arm_fir_decimate_fast_q31()
304 tapCnt--; in arm_fir_decimate_fast_q31()
[all …]
Darm_iir_lattice_f32.c133 uint32_t blkCnt, tapCnt; /* Temporary variables for counts */ in arm_iir_lattice_f32() local
169 tapCnt = (numStages) >> 2U; in arm_iir_lattice_f32()
171 while (tapCnt > 0U) in arm_iir_lattice_f32()
265 tapCnt--; in arm_iir_lattice_f32()
269 tapCnt = numStages % 0x4U; in arm_iir_lattice_f32()
274 tapCnt = numStages; in arm_iir_lattice_f32()
278 while (tapCnt > 0U) in arm_iir_lattice_f32()
290 tapCnt--; in arm_iir_lattice_f32()
319 tapCnt = numStages >> 2U; in arm_iir_lattice_f32()
321 while (tapCnt > 0U) in arm_iir_lattice_f32()
[all …]
Darm_fir_fast_q31.c75 uint32_t i, tapCnt, blkCnt; /* Loop counters */ in arm_fir_fast_q31() local
125 tapCnt = numTaps >> 2U; in arm_fir_fast_q31()
129 while (tapCnt > 0U) in arm_fir_fast_q31()
190 tapCnt--; in arm_fir_fast_q31()
194 tapCnt = numTaps % 0x4U; in arm_fir_fast_q31()
196 while (tapCnt > 0U) in arm_fir_fast_q31()
216 tapCnt--; in arm_fir_fast_q31()
287 tapCnt = (numTaps - 1U) >> 2U; in arm_fir_fast_q31()
290 while (tapCnt > 0U) in arm_fir_fast_q31()
298 tapCnt--; in arm_fir_fast_q31()
[all …]
Darm_fir_fast_q15.c73 uint32_t tapCnt, blkCnt; /* Loop counters */ in arm_fir_fast_q15() local
124 tapCnt = numTaps >> 2U; in arm_fir_fast_q15()
126 while (tapCnt > 0U) in arm_fir_fast_q15()
186 tapCnt--; in arm_fir_fast_q15()
263 tapCnt = numTaps >> 1U; in arm_fir_fast_q15()
270 tapCnt--; in arm_fir_fast_q15()
272 while (tapCnt > 0U); in arm_fir_fast_q15()
295 tapCnt = (numTaps - 1U) >> 2U; in arm_fir_fast_q15()
298 while (tapCnt > 0U) in arm_fir_fast_q15()
306 tapCnt--; in arm_fir_fast_q15()
[all …]
Darm_correlate_fast_opt_q15.c80 uint32_t tapCnt; /* Loop count */ in arm_correlate_fast_opt_q15() local
192 tapCnt = (srcBLen) >> 2U; in arm_correlate_fast_opt_q15()
194 while (tapCnt > 0U) in arm_correlate_fast_opt_q15()
242 tapCnt--; in arm_correlate_fast_opt_q15()
249 tapCnt = (srcBLen) & 3U; in arm_correlate_fast_opt_q15()
251 while (tapCnt > 0U) in arm_correlate_fast_opt_q15()
262 tapCnt--; in arm_correlate_fast_opt_q15()
302 tapCnt = (srcBLen) >> 1U; in arm_correlate_fast_opt_q15()
304 while (tapCnt > 0U) in arm_correlate_fast_opt_q15()
312 tapCnt--; in arm_correlate_fast_opt_q15()
[all …]
Darm_correlate_opt_q15.c77 uint32_t tapCnt; in arm_correlate_opt_q15() local
187 tapCnt = (srcBLen) >> 2U; in arm_correlate_opt_q15()
189 while (tapCnt > 0U) in arm_correlate_opt_q15()
237 tapCnt--; in arm_correlate_opt_q15()
244 tapCnt = (srcBLen) & 3U; in arm_correlate_opt_q15()
246 while (tapCnt > 0U) in arm_correlate_opt_q15()
257 tapCnt--; in arm_correlate_opt_q15()
299 tapCnt = (srcBLen) >> 1U; in arm_correlate_opt_q15()
301 while (tapCnt > 0U) in arm_correlate_opt_q15()
309 tapCnt--; in arm_correlate_opt_q15()
[all …]
Darm_conv_opt_q15.c79 uint32_t tapCnt; /* Loop count */ in arm_conv_opt_q15() local
210 tapCnt = (srcBLen) >> 2U; in arm_conv_opt_q15()
212 while (tapCnt > 0U) in arm_conv_opt_q15()
261 tapCnt--; in arm_conv_opt_q15()
268 tapCnt = (srcBLen) & 3U; in arm_conv_opt_q15()
270 while (tapCnt > 0U) in arm_conv_opt_q15()
281 tapCnt--; in arm_conv_opt_q15()
320 tapCnt = (srcBLen) >> 1U; in arm_conv_opt_q15()
322 while (tapCnt > 0U) in arm_conv_opt_q15()
330 tapCnt--; in arm_conv_opt_q15()
[all …]
Darm_conv_fast_opt_q15.c83 uint32_t tapCnt; /* Loop count */ in arm_conv_fast_opt_q15() local
214 tapCnt = (srcBLen) >> 2U; in arm_conv_fast_opt_q15()
216 while (tapCnt > 0U) in arm_conv_fast_opt_q15()
265 tapCnt--; in arm_conv_fast_opt_q15()
272 tapCnt = (srcBLen) & 3U; in arm_conv_fast_opt_q15()
274 while (tapCnt > 0U) in arm_conv_fast_opt_q15()
285 tapCnt--; in arm_conv_fast_opt_q15()
324 tapCnt = (srcBLen) >> 1U; in arm_conv_fast_opt_q15()
326 while (tapCnt > 0U) in arm_conv_fast_opt_q15()
334 tapCnt--; in arm_conv_fast_opt_q15()
[all …]
Darm_conv_opt_q7.c74 uint32_t j, k, blkCnt, tapCnt; /* Loop counter */ in arm_conv_opt_q7() local
219 tapCnt = (srcBLen) >> 2U; in arm_conv_opt_q7()
221 while (tapCnt > 0U) in arm_conv_opt_q7()
272 tapCnt--; in arm_conv_opt_q7()
279 tapCnt = (srcBLen) & 3U; in arm_conv_opt_q7()
281 while (tapCnt > 0U) in arm_conv_opt_q7()
292 tapCnt--; in arm_conv_opt_q7()
322 tapCnt = (srcBLen) >> 1U; in arm_conv_opt_q7()
324 while (tapCnt > 0U) in arm_conv_opt_q7()
330 tapCnt--; in arm_conv_opt_q7()
[all …]
Darm_conv_partial_fast_opt_q15.c79 uint32_t tapCnt; /* Loop count */ in arm_conv_partial_fast_opt_q15() local
224 tapCnt = (srcBLen) >> 2U; in arm_conv_partial_fast_opt_q15()
226 while (tapCnt > 0U) in arm_conv_partial_fast_opt_q15()
276 tapCnt--; in arm_conv_partial_fast_opt_q15()
283 tapCnt = (srcBLen) & 3U; in arm_conv_partial_fast_opt_q15()
285 while (tapCnt > 0U) in arm_conv_partial_fast_opt_q15()
296 tapCnt--; in arm_conv_partial_fast_opt_q15()
335 tapCnt = (srcBLen) >> 1U; in arm_conv_partial_fast_opt_q15()
337 while (tapCnt > 0U) in arm_conv_partial_fast_opt_q15()
349 tapCnt--; in arm_conv_partial_fast_opt_q15()
[all …]

12