Lines Matching full:off

121     for (int off = 0; off + B <= N; off += B)  in save()  local
123 fwrite(d+off, sizeof(complexf), B, f); in save()
131 int iter, off; in bench_shift_math_cc() local
142 off = 0; in bench_shift_math_cc()
147 phase = shift_math_cc(input+off, output+off, B, -0.0009F, phase); in bench_shift_math_cc()
148 off += B; in bench_shift_math_cc()
151 } while ( t1 < tstop && off + B < N ); in bench_shift_math_cc()
153 save(output, B, off, BENCH_FILE_SHIFT_MATH_CC); in bench_shift_math_cc()
158 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_math_cc()
166 int iter, off; in bench_shift_table_cc() local
180 off = 0; in bench_shift_table_cc()
185 phase = shift_table_cc(input+off, output+off, B, -0.0009F, table_data, phase); in bench_shift_table_cc()
187 off += B; in bench_shift_table_cc()
190 } while ( t1 < tstop && off + B < N ); in bench_shift_table_cc()
192 save(output, B, off, NULL); in bench_shift_table_cc()
196 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_table_cc()
204 int iter, off; in bench_shift_addfast() local
216 off = 0; in bench_shift_addfast()
221 phase = shift_addfast_cc(input+off, output+off, B, &state, phase); in bench_shift_addfast()
223 off += B; in bench_shift_addfast()
226 } while ( t1 < tstop && off + B < N ); in bench_shift_addfast()
228 save(output, B, off, BENCH_FILE_ADD_FAST_CC); in bench_shift_addfast()
233 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_addfast()
240 int iter, off; in bench_shift_addfast_inp() local
251 off = 0; in bench_shift_addfast_inp()
256 phase = shift_addfast_inp_c(input+off, B, &state, phase); in bench_shift_addfast_inp()
258 off += B; in bench_shift_addfast_inp()
261 } while ( t1 < tstop && off + B < N ); in bench_shift_addfast_inp()
263 save(input, B, off, BENCH_FILE_ADD_FAST_INP_C); in bench_shift_addfast_inp()
267 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_addfast_inp()
275 int iter, off; in bench_shift_unroll_oop() local
287 off = 0; in bench_shift_unroll_oop()
292 phase = shift_unroll_cc(input+off, output+off, B, &state, phase); in bench_shift_unroll_oop()
294 off += B; in bench_shift_unroll_oop()
297 } while ( t1 < tstop && off + B < N ); in bench_shift_unroll_oop()
299 save(output, B, off, NULL); in bench_shift_unroll_oop()
303 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_unroll_oop()
310 int iter, off; in bench_shift_unroll_inp() local
321 off = 0; in bench_shift_unroll_inp()
326 phase = shift_unroll_inp_c(input+off, B, &state, phase); in bench_shift_unroll_inp()
328 off += B; in bench_shift_unroll_inp()
331 } while ( t1 < tstop && off + B < N ); in bench_shift_unroll_inp()
333 save(input, B, off, BENCH_FILE_UNROLL_INP_C); in bench_shift_unroll_inp()
337 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_unroll_inp()
346 int iter, off; in bench_shift_limited_unroll_oop() local
357 off = 0; in bench_shift_limited_unroll_oop()
362 shift_limited_unroll_cc(input+off, output+off, B, &state); in bench_shift_limited_unroll_oop()
364 off += B; in bench_shift_limited_unroll_oop()
367 } while ( t1 < tstop && off + B < N ); in bench_shift_limited_unroll_oop()
369 save(output, B, off, NULL); in bench_shift_limited_unroll_oop()
373 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_limited_unroll_oop()
381 int iter, off; in bench_shift_limited_unroll_inp() local
391 off = 0; in bench_shift_limited_unroll_inp()
396 shift_limited_unroll_inp_c(input+off, B, &state); in bench_shift_limited_unroll_inp()
398 off += B; in bench_shift_limited_unroll_inp()
401 } while ( t1 < tstop && off + B < N ); in bench_shift_limited_unroll_inp()
403 save(input, B, off, BENCH_FILE_LTD_UNROLL_INP_C); in bench_shift_limited_unroll_inp()
407 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_limited_unroll_inp()
415 int iter, off; in bench_shift_limited_unroll_A_sse_inp() local
427 off = 0; in bench_shift_limited_unroll_A_sse_inp()
432 shift_limited_unroll_A_sse_inp_c(input+off, B, state); in bench_shift_limited_unroll_A_sse_inp()
434 off += B; in bench_shift_limited_unroll_A_sse_inp()
437 } while ( t1 < tstop && off + B < N ); in bench_shift_limited_unroll_A_sse_inp()
439 save(input, B, off, BENCH_FILE_LTD_UNROLL_A_SSE_INP_C); in bench_shift_limited_unroll_A_sse_inp()
443 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_limited_unroll_A_sse_inp()
450 int iter, off; in bench_shift_limited_unroll_B_sse_inp() local
463 off = 0; in bench_shift_limited_unroll_B_sse_inp()
468 shift_limited_unroll_B_sse_inp_c(input+off, B, state); in bench_shift_limited_unroll_B_sse_inp()
470 off += B; in bench_shift_limited_unroll_B_sse_inp()
473 } while ( t1 < tstop && off + B < N ); in bench_shift_limited_unroll_B_sse_inp()
475 save(input, B, off, BENCH_FILE_LTD_UNROLL_B_SSE_INP_C); in bench_shift_limited_unroll_B_sse_inp()
479 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_limited_unroll_B_sse_inp()
486 int iter, off; in bench_shift_limited_unroll_C_sse_inp() local
498 off = 0; in bench_shift_limited_unroll_C_sse_inp()
503 shift_limited_unroll_C_sse_inp_c(input+off, B, state); in bench_shift_limited_unroll_C_sse_inp()
505 off += B; in bench_shift_limited_unroll_C_sse_inp()
508 } while ( t1 < tstop && off + B < N ); in bench_shift_limited_unroll_C_sse_inp()
510 save(input, B, off, BENCH_FILE_LTD_UNROLL_C_SSE_INP_C); in bench_shift_limited_unroll_C_sse_inp()
514 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_limited_unroll_C_sse_inp()
522 int iter, off; in bench_shift_rec_osc_cc_oop() local
534 off = 0; in bench_shift_rec_osc_cc_oop()
539 shift_recursive_osc_cc(input+off, output+off, B, &shift_conf, &shift_state); in bench_shift_rec_osc_cc_oop()
541 off += B; in bench_shift_rec_osc_cc_oop()
544 } while ( t1 < tstop && off + B < N ); in bench_shift_rec_osc_cc_oop()
546 save(input, B, off, BENCH_FILE_REC_OSC_CC); in bench_shift_rec_osc_cc_oop()
548 save(output, B, off, NULL); in bench_shift_rec_osc_cc_oop()
552 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_rec_osc_cc_oop()
560 int iter, off; in bench_shift_rec_osc_cc_inp() local
571 off = 0; in bench_shift_rec_osc_cc_inp()
576 shift_recursive_osc_inp_c(input+off, B, &shift_conf, &shift_state); in bench_shift_rec_osc_cc_inp()
578 off += B; in bench_shift_rec_osc_cc_inp()
581 } while ( t1 < tstop && off + B < N ); in bench_shift_rec_osc_cc_inp()
583 save(input, B, off, BENCH_FILE_REC_OSC_INP_C); in bench_shift_rec_osc_cc_inp()
586 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_rec_osc_cc_inp()
594 int iter, off; in bench_shift_rec_osc_sse_c_inp() local
609 off = 0; in bench_shift_rec_osc_sse_c_inp()
614 shift_recursive_osc_sse_inp_c(input+off, B, &shift_conf, shift_state); in bench_shift_rec_osc_sse_c_inp()
616 off += B; in bench_shift_rec_osc_sse_c_inp()
619 } while ( t1 < tstop && off + B < N ); in bench_shift_rec_osc_sse_c_inp()
621 save(input, B, off, BENCH_FILE_REC_OSC_SSE_INP_C); in bench_shift_rec_osc_sse_c_inp()
624 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_rec_osc_sse_c_inp()