Home | History | Annotate | Download | only in cpu_ref

Lines Matching refs:out_s

159             short4 out_s = convert_short4(*out);
160 in_s = in_s + ((out_s * (short4)(255 - in_s.w)) >> (short4)8);
178 short4 out_s = convert_short4(*out);
179 in_s = out_s + ((in_s * (short4)(255 - out_s.w)) >> (short4)8);
214 short4 out_s = convert_short4(*out);
215 out_s = (out_s * in->w) >> (short4)8;
216 *out = convert_uchar4(out_s);
250 short4 out_s = convert_short4(*out);
251 out_s = (out_s * (short4)(255 - in->w)) >> (short4)8;
252 *out = convert_uchar4(out_s);
269 short4 out_s = convert_short4(*out);
270 out_s.xyz = ((in_s.xyz * out_s.w) +
271 (out_s.xyz * ((short3)255 - (short3)in_s.w))) >> (short3)8;
272 *out = convert_uchar4(out_s);
289 short4 out_s = convert_short4(*out);
290 out_s.xyz = ((out_s.xyz * in_s.w) +
291 (in_s.xyz * ((short3)255 - (short3)out_s.w))) >> (short3)8;
292 out_s.w = in_s.w;
293 *out = convert_uchar4(out_s);