Lines Matching defs:win
68 static void check_vector_fmul_window(const int32_t *src0, const int32_t *src1, const int32_t *win)
73 declare_func(void, int32_t *dst, const int32_t *src0, const int32_t *src1, const int32_t *win, int len);
75 call_ref(ref, src0, src1, win, BUF_SIZE / 2);
76 call_new(new, src0, src1, win, BUF_SIZE / 2);
79 bench_new(new, src0, src1, win, BUF_SIZE / 2);
82 static void check_vector_fmul_window_scaled(const int32_t *src0, const int32_t *src1, const int32_t *win)
87 declare_func(void, int16_t *dst, const int32_t *src0, const int32_t *src1, const int32_t *win, int len, uint8_t bits);
89 call_ref(ref, src0, src1, win, BUF_SIZE / 2, 2);
90 call_new(new, src0, src1, win, BUF_SIZE / 2, 2);
93 bench_new(new, src0, src1, win, BUF_SIZE / 2, 2);