Lines Matching refs:src1
60 static void vector_fmul_mips(float *dst, const float *src0, const float *src1,
67 dst[i] = src0[i] * src1[i];
72 float *s1 = (float *)src1;
149 const float *src1, const float *win, int len)
160 src1_j = (float *)(src1 + len - 1);
305 static void vector_fmul_reverse_mips(float *dst, const float *src0, const float *src1, int len){
308 src1 += len-1;
315 "lwc1 %[temp1], 0(%[src1]) \n\t"
317 "lwc1 %[temp3], -4(%[src1]) \n\t"
319 "lwc1 %[temp5], -8(%[src1]) \n\t"
321 "lwc1 %[temp7], -12(%[src1]) \n\t"
327 PTR_ADDIU "%[src1], %[src1], -16 \n\t"
334 : [dst]"+r"(dst), [src0]"+r"(src0), [src1]"+r"(src1),