Lines Matching refs:dst
51 static void vector_fmul_add_c(int *dst, const int *src0, const int *src1, const int *src2, int len){
57 dst[i] = src2[i] + (int)((accu + 0x40000000) >> 31);
61 static void vector_fmul_reverse_c(int *dst, const int *src0, const int *src1, int len)
69 dst[i] = (int)((accu+0x40000000) >> 31);
73 static void vector_fmul_window_scaled_c(int16_t *dst, const int32_t *src0,
79 dst += len;
89 dst[i] = av_clip_int16(((((int64_t)s0*wj - (int64_t)s1*wi + 0x40000000) >> 31) + round) >> bits);
90 dst[j] = av_clip_int16(((((int64_t)s0*wi + (int64_t)s1*wj + 0x40000000) >> 31) + round) >> bits);
94 static void vector_fmul_window_c(int32_t *dst, const int32_t *src0,
100 dst += len;
109 dst[i] = ((int64_t)s0*wj - (int64_t)s1*wi + 0x40000000) >> 31;
110 dst[j] = ((int64_t)s0*wi + (int64_t)s1*wj + 0x40000000) >> 31;
114 static void vector_fmul_c(int *dst, const int *src0, const int *src1, int len)
121 dst[i] = (int)((accu+0x40000000) >> 31);