Lines Matching refs:xf

94                          float xf, float yf, int width) {  in OneBiCubic()  argument
95 int startx = (int) floor(xf - 1); in OneBiCubic()
96 xf = xf - floor(xf); in OneBiCubic()
106 convert_float4(yp0[xs3]), xf); in OneBiCubic()
111 convert_float4(yp1[xs3]), xf); in OneBiCubic()
116 convert_float4(yp2[xs3]), xf); in OneBiCubic()
121 convert_float4(yp3[xs3]), xf); in OneBiCubic()
129 float xf, float yf, int width) { in OneBiCubic() argument
130 int startx = (int) floor(xf - 1); in OneBiCubic()
131 xf = xf - floor(xf); in OneBiCubic()
141 convert_float2(yp0[xs3]), xf); in OneBiCubic()
146 convert_float2(yp1[xs3]), xf); in OneBiCubic()
151 convert_float2(yp2[xs3]), xf); in OneBiCubic()
156 convert_float2(yp3[xs3]), xf); in OneBiCubic()
164 float xf, float yf, int width) { in OneBiCubic() argument
165 int startx = (int) floor(xf - 1); in OneBiCubic()
166 xf = xf - floor(xf); in OneBiCubic()
174 (float)yp0[xs2], (float)yp0[xs3], xf); in OneBiCubic()
176 (float)yp1[xs2], (float)yp1[xs3], xf); in OneBiCubic()
178 (float)yp2[xs2], (float)yp2[xs3], xf); in OneBiCubic()
180 (float)yp3[xs2], (float)yp3[xs3], xf); in OneBiCubic()
192 uint32_t xf,
206 uint32_t xf,
220 uint32_t xf,
245 float xf, float yf, int width) { in OneBiCubic() argument
246 int startx = (int) floor(xf - 1); in OneBiCubic()
247 xf = xf - floor(xf); in OneBiCubic()
255 yp0[xs2], yp0[xs3], xf); in OneBiCubic()
257 yp1[xs2], yp1[xs3], xf); in OneBiCubic()
259 yp2[xs2], yp2[xs3], xf); in OneBiCubic()
261 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
268 float xf, float yf, int width) { in OneBiCubic() argument
269 int startx = (int) floor(xf - 1); in OneBiCubic()
270 xf = xf - floor(xf); in OneBiCubic()
278 yp0[xs2], yp0[xs3], xf); in OneBiCubic()
280 yp1[xs2], yp1[xs3], xf); in OneBiCubic()
282 yp2[xs2], yp2[xs3], xf); in OneBiCubic()
284 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
291 float xf, float yf, int width) { in OneBiCubic() argument
292 int startx = (int) floor(xf - 1); in OneBiCubic()
293 xf = xf - floor(xf); in OneBiCubic()
301 yp0[xs2], yp0[xs3], xf); in OneBiCubic()
303 yp1[xs2], yp1[xs3], xf); in OneBiCubic()
305 yp2[xs2], yp2[xs3], xf); in OneBiCubic()
307 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
347 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU4() local
348 long xf16 = rint(xf * 0x10000); in kernelU4()
373 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU4() local
374 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU4()
414 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU2() local
415 long xf16 = rint(xf * 0x10000); in kernelU2()
440 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU2() local
441 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU2()
481 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU1() local
482 long xf16 = rint(xf * 0x10000); in kernelU1()
507 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelU1() local
508 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU1()
547 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelF4() local
548 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF4()
587 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelF2() local
588 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF2()
627 float xf = (x1 + 0.5f) * cp->scaleX - 0.5f; in kernelF1() local
628 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF1()