Home | History | Annotate | Download | only in soft

Lines Matching full:coef

61     inline void multiply_coeff_y (float *out, const float *in, float coef) {
62 out[0] += in[0] * coef;
63 out[1] += in[1] * coef;
64 out[2] += in[2] * coef;
65 out[3] += in[3] * coef;
66 out[4] += in[4] * coef;
67 out[5] += in[5] * coef;
68 out[6] += in[6] * coef;
69 out[7] += in[7] * coef;
116 inline void multiply_coeff_uv (Float2 *out, Float2 *in, float coef) {
117 out[0] += in[0] * coef;
118 out[1] += in[1] * coef;
119 out[2] += in[2] * coef;
120 out[3] += in[3] * coef;
121 out[4] += in[4] * coef;