Lines Matching refs:xf

85                          float xf, float yf, int width) {  in OneBiCubic()  argument
86 int startx = (int) floor(xf - 1); in OneBiCubic()
87 xf = xf - floor(xf); in OneBiCubic()
97 convert_float4(yp0[xs3]), xf); in OneBiCubic()
102 convert_float4(yp1[xs3]), xf); in OneBiCubic()
107 convert_float4(yp2[xs3]), xf); in OneBiCubic()
112 convert_float4(yp3[xs3]), xf); in OneBiCubic()
120 float xf, float yf, int width) { in OneBiCubic() argument
121 int startx = (int) floor(xf - 1); in OneBiCubic()
122 xf = xf - floor(xf); in OneBiCubic()
132 convert_float2(yp0[xs3]), xf); in OneBiCubic()
137 convert_float2(yp1[xs3]), xf); in OneBiCubic()
142 convert_float2(yp2[xs3]), xf); in OneBiCubic()
147 convert_float2(yp3[xs3]), xf); in OneBiCubic()
155 float xf, float yf, int width) { in OneBiCubic() argument
156 int startx = (int) floor(xf - 1); in OneBiCubic()
157 xf = xf - floor(xf); in OneBiCubic()
165 (float)yp0[xs2], (float)yp0[xs3], xf); in OneBiCubic()
167 (float)yp1[xs2], (float)yp1[xs3], xf); in OneBiCubic()
169 (float)yp2[xs2], (float)yp2[xs3], xf); in OneBiCubic()
171 (float)yp3[xs2], (float)yp3[xs3], xf); in OneBiCubic()
211 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU4() local
212 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU4()
251 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU2() local
252 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU2()
291 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU1() local
292 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU1()