Home | History | Annotate | Download | only in pixelflinger2

Lines Matching refs:constIntVec

203    intVector = intVecMax(builder, intVector, constIntVec(builder, 0,0,0,0));
204 return intVecMin(builder, intVector, constIntVec(builder, 255,255,255,255));
212 src = builder.CreateShl(src, constIntVec(builder, 0, 8, 16, 24));
219 src = builder.CreateAnd(src, constIntVec(builder, 0xf8, 0xfc, 0xf8, 0));
245 dst = builder.CreateLShr(dst, constIntVec(builder, 0, 8, 16, 24));
246 dst = builder.CreateAnd(dst, constIntVec(builder, 0xff, 0xff, 0xff, 0xff));
249 dst = builder.CreateAnd(dst, constIntVec(builder, 0xf800, 0x7e0, 0x1f, 0));
250 dst = builder.CreateLShr(dst, constIntVec(builder, 8, 3, 0, 0));
251 dst = builder.CreateShl(dst, constIntVec(builder, 0, 0, 3, 0));
252 dst = builder.CreateOr(dst, constIntVec(builder, 0, 0, 0, 0xff));
290 // src = builder.CreateAShr(src, constIntVec(builder,8,8,8,8));
309 // channels = builder.CreateLShr(channels, constIntVec(builder,0, 8, 16, 24));
310 // channels = builder.CreateAnd(channels, constIntVec(builder,0xff, 0xff, 0xff, 0xff));
319 // src = builder.CreateAShr(src, constIntVec(builder,8,8,8,8));
329 Value * const one = constIntVec(builder,255,255,255,255);
330 Value * const zero = constIntVec(builder,0,0,0,0);
335 Value * constant = constIntVec(builder,gglCtx->blendState.color[0],
371 sf = builder.CreateAdd(sf, builder.CreateLShr(sf, constIntVec(builder,7,7,7,7)));
372 df = builder.CreateAdd(df, builder.CreateLShr(df, constIntVec(builder,7,7,7,7)));
414 res = builder.CreateAShr(res, constIntVec(builder,8,8,8,8));