Home | History | Annotate | Download | only in CodeGenOpenCL

Lines Matching full:int4

30 typedef __attribute__((ext_vector_type(4))) int int4;
33 int4 vectorVectorTest(int4 a,int4 b) {
36 int4 c = a << b;
38 int4 d = {1, 1, 1, 1};
39 int4 e = {33, 34, -28, -29};
40 int4 f = c + (d << e);
46 int4 vectorScalarTest(int4 a,int b) {
51 int4 c = a << b;
53 int4 d = {1, 1, 1, 1};
54 int4 f = c + (d << 34);