Lines Matching refs:xf
87 float xf, float yf, int width) { in OneBiCubic() argument
88 int startx = (int) floor(xf - 1); in OneBiCubic()
89 xf = xf - floor(xf); in OneBiCubic()
99 convert_float4(yp0[xs3]), xf); in OneBiCubic()
104 convert_float4(yp1[xs3]), xf); in OneBiCubic()
109 convert_float4(yp2[xs3]), xf); in OneBiCubic()
114 convert_float4(yp3[xs3]), xf); in OneBiCubic()
122 float xf, float yf, int width) { in OneBiCubic() argument
123 int startx = (int) floor(xf - 1); in OneBiCubic()
124 xf = xf - floor(xf); in OneBiCubic()
134 convert_float2(yp0[xs3]), xf); in OneBiCubic()
139 convert_float2(yp1[xs3]), xf); in OneBiCubic()
144 convert_float2(yp2[xs3]), xf); in OneBiCubic()
149 convert_float2(yp3[xs3]), xf); in OneBiCubic()
157 float xf, float yf, int width) { in OneBiCubic() argument
158 int startx = (int) floor(xf - 1); in OneBiCubic()
159 xf = xf - floor(xf); in OneBiCubic()
167 (float)yp0[xs2], (float)yp0[xs3], xf); in OneBiCubic()
169 (float)yp1[xs2], (float)yp1[xs3], xf); in OneBiCubic()
171 (float)yp2[xs2], (float)yp2[xs3], xf); in OneBiCubic()
173 (float)yp3[xs2], (float)yp3[xs3], xf); in OneBiCubic()
185 uint32_t xf,
199 uint32_t xf,
213 uint32_t xf,
238 float xf, float yf, int width) { in OneBiCubic() argument
239 int startx = (int) floor(xf - 1); in OneBiCubic()
240 xf = xf - floor(xf); in OneBiCubic()
248 yp0[xs2], yp0[xs3], xf); in OneBiCubic()
250 yp1[xs2], yp1[xs3], xf); in OneBiCubic()
252 yp2[xs2], yp2[xs3], xf); in OneBiCubic()
254 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
261 float xf, float yf, int width) { in OneBiCubic() argument
262 int startx = (int) floor(xf - 1); in OneBiCubic()
263 xf = xf - floor(xf); in OneBiCubic()
271 yp0[xs2], yp0[xs3], xf); in OneBiCubic()
273 yp1[xs2], yp1[xs3], xf); in OneBiCubic()
275 yp2[xs2], yp2[xs3], xf); in OneBiCubic()
277 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
284 float xf, float yf, int width) { in OneBiCubic() argument
285 int startx = (int) floor(xf - 1); in OneBiCubic()
286 xf = xf - floor(xf); in OneBiCubic()
294 yp0[xs2], yp0[xs3], xf); in OneBiCubic()
296 yp1[xs2], yp1[xs3], xf); in OneBiCubic()
298 yp2[xs2], yp2[xs3], xf); in OneBiCubic()
300 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
340 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU4() local
341 long xf16 = rint(xf * 0x10000); in kernelU4()
366 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU4() local
367 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU4()
407 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU2() local
408 long xf16 = rint(xf * 0x10000); in kernelU2()
433 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU2() local
434 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU2()
474 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU1() local
475 long xf16 = rint(xf * 0x10000); in kernelU1()
500 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU1() local
501 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU1()
540 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelF4() local
541 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF4()
580 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelF2() local
581 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF2()
620 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelF1() local
621 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF1()