Lines Matching refs:x1

158 …insicBlurVFU4_K(void *dst, const void *pin, int stride, const void *gptr, int rct, int x1, int ct);
159 extern void rsdIntrinsicBlurHFU4_K(void *dst, const void *pin, const void *gptr, int rct, int x1, i…
160 extern void rsdIntrinsicBlurHFU1_K(void *dst, const void *pin, const void *gptr, int rct, int x1, i…
167 int x1, int x2) { in OneVFU4() argument
168 out += x1; in OneVFU4()
171 int t = (x2 - x1); in OneVFU4()
174 rsdIntrinsicBlurVFU4_K(out, ptrIn, iStride, gPtr, ct, x1, x1 + t); in OneVFU4()
176 x1 += t; in OneVFU4()
181 while(x2 > x1) { in OneVFU4()
193 x1++; in OneVFU4()
200 const uchar *ptrIn, int iStride, const float* gPtr, int ct, int x1, int x2) { in OneVFU1() argument
202 int len = x2 - x1; in OneVFU1()
203 out += x1; in OneVFU1()
205 while((x2 > x1) && (((uintptr_t)ptrIn) & 0x3)) { in OneVFU1()
217 x1++; in OneVFU1()
223 if (gArchUseSIMD && (x2 > x1)) { in OneVFU1()
224 int t = (x2 - x1) >> 2; in OneVFU1()
304 uint32_t x1 = xstart; in kernelU4() local
311 stride, x1, info->current.y, x2 - x1, cp->mIradius, cp->mIp + cp->mIradius); in kernelU4()
331 x1 = 0; in kernelU4()
332 while(info->dim.x > x1) { in kernelU4()
333 OneVU4(info, fout, x1, y, pin, stride, cp->mFp, cp->mIradius); in kernelU4()
335 x1++; in kernelU4()
339 x1 = xstart; in kernelU4()
340 while ((x1 < (uint32_t)cp->mIradius) && (x1 < x2)) { in kernelU4()
341 OneHU4(info, out, x1, buf, cp->mFp, cp->mIradius); in kernelU4()
343 x1++; in kernelU4()
347 if ((x1 + cp->mIradius) < x2) { in kernelU4()
349 cp->mIradius * 2 + 1, x1, x2 - cp->mIradius); in kernelU4()
350 out += (x2 - cp->mIradius) - x1; in kernelU4()
351 x1 = x2 - cp->mIradius; in kernelU4()
355 while(x2 > x1) { in kernelU4()
356 OneHU4(info, out, x1, buf, cp->mFp, cp->mIradius); in kernelU4()
358 x1++; in kernelU4()
375 uint32_t x1 = xstart; in kernelU1() local
383 if (cp->mIradius > 8 || (info->dim.x - rsMax(0, (int32_t)x1 - 8)) >= 16) { in kernelU1()
385 stride, x1, info->current.y, x2 - x1, cp->mIradius, cp->mIp + cp->mIradius); in kernelU1()
397 x1 = 0; in kernelU1()
398 while(info->dim.x > x1) { in kernelU1()
399 OneVU1(info, fout, x1, y, pin, stride, cp->mFp, cp->mIradius); in kernelU1()
401 x1++; in kernelU1()
405 x1 = xstart; in kernelU1()
406 while ((x1 < x2) && in kernelU1()
407 ((x1 < (uint32_t)cp->mIradius) || (((uintptr_t)out) & 0x3))) { in kernelU1()
408 OneHU1(info, out, x1, buf, cp->mFp, cp->mIradius); in kernelU1()
410 x1++; in kernelU1()
414 if ((x1 + cp->mIradius) < x2) { in kernelU1()
415 uint32_t len = x2 - (x1 + cp->mIradius); in kernelU1()
424 cp->mIradius * 2 + 1, x1, x1 + len); in kernelU1()
426 x1 += len; in kernelU1()
431 while(x2 > x1) { in kernelU1()
432 OneHU1(info, out, x1, buf, cp->mFp, cp->mIradius); in kernelU1()
434 x1++; in kernelU1()