Home | History | Annotate | Download | only in cpu_ref

Lines Matching full:out_s

155             short4 out_s = convert_short4(*out);
156 in_s = in_s + ((out_s * (short4)(255 - in_s.w)) >> (short4)8);
174 short4 out_s = convert_short4(*out);
175 in_s = out_s + ((in_s * (short4)(255 - out_s.w)) >> (short4)8);
210 short4 out_s = convert_short4(*out);
211 out_s = (out_s * in->w) >> (short4)8;
212 *out = convert_uchar4(out_s);
246 short4 out_s = convert_short4(*out);
247 out_s = (out_s * (short4)(255 - in->w)) >> (short4)8;
248 *out = convert_uchar4(out_s);
265 short4 out_s = convert_short4(*out);
266 out_s.xyz = ((in_s.xyz * out_s.w) +
267 (out_s.xyz * ((short3)255 - (short3)in_s.w))) >> (short3)8;
268 *out = convert_uchar4(out_s);
285 short4 out_s = convert_short4(*out);
286 out_s.xyz = ((out_s.xyz * in_s.w) +
287 (in_s.xyz * ((short3)255 - (short3)out_s.w))) >> (short3)8;
288 out_s.w = in_s.w;
289 *out = convert_uchar4(out_s);