Lines Matching refs:blurredPixel
118 float4 blurredPixel = 0; in OneVU4() local
124 blurredPixel += pf * gPtr[0]; in OneVU4()
128 out[0] = blurredPixel; in OneVU4()
136 float blurredPixel = 0; in OneVU1() local
141 blurredPixel += pf * gPtr[0]; in OneVU1()
145 out[0] = blurredPixel; in OneVU1()
183 float4 blurredPixel = 0; in OneVFU4() local
188 blurredPixel += pf * gp[0]; in OneVFU4()
192 out->xyzw = blurredPixel; in OneVFU4()
207 float blurredPixel = 0; in OneVFU1() local
212 blurredPixel += pf * gp[0]; in OneVFU1()
216 out[0] = blurredPixel; in OneVFU1()
236 float blurredPixel = 0; in OneVFU1() local
241 blurredPixel += pf * gp[0]; in OneVFU1()
245 out[0] = blurredPixel; in OneVFU1()
258 float4 blurredPixel = 0; in OneHU4() local
263 blurredPixel += pf * gPtr[0]; in OneHU4()
267 out->xyzw = convert_uchar4(blurredPixel); in OneHU4()
273 float blurredPixel = 0; in OneHU1() local
278 blurredPixel += pf * gPtr[0]; in OneHU1()
282 out[0] = (uchar)blurredPixel; in OneHU1()