/external/clang/test/CodeGenOpenCL/ |
vector_literals_valid.cl | 5 typedef __attribute__(( ext_vector_type(4) )) int int4; 10 int4 a_1_1_1_1 = (int4)(1,2,3,4); 11 int4 a_2_1_1 = (int4)((int2)(1,2),3,4); 12 int4 a_1_2_1 = (int4)(1,(int2)(2,3),4); 13 int4 a_1_1_2 = (int4)(1,2,(int2)(3,4)); 14 int4 a_2_2 = (int4)((int2)(1,2),(int2)(3,4)) [all...] |
/external/clang/test/SemaOpenCL/ |
vector_conv_invalid.cl | 4 typedef int int4 __attribute((ext_vector_type(4))); 10 int4 i = u; // expected-error{{initializing 'int4' with an expression of incompatible type 'uint4'}} 11 int4 e = (int4)u; // expected-error{{invalid conversion between ext-vector type 'int4' and 'uint4'}}
|
vector_literals_invalid.cl | 4 typedef __attribute__(( ext_vector_type(4) )) int int4; 9 int4 a = (int4)(1,2,3); // expected-error{{too few elements}} 10 int4 b = (int4)(1,2,3,4,5); // expected-error{{excess elements in vector}}
|
vec_step.cl | 5 typedef int int4 __attribute__((ext_vector_type(4))); 10 int4 auto1; 24 int res9[vec_step(int4) == 4 ? 1 : -1];
|
/external/clang/test/CodeGen/ |
palignr.c | 5 typedef __attribute__((vector_size(16))) int int4; typedef 8 int4 align1(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 15); } 12 int4 align2(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 16); } 14 int4 align3(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 17); [all...] |
ext-vector.c | 5 typedef __attribute__(( ext_vector_type(4) )) int int4; typedef 119 int4 cmp; 130 void test7(int4 *ap, int4 *bp, int c) { 131 int4 a = *ap; 132 int4 b = *bp; 186 int4 cmp; 207 int4 cmp; 218 int test9(int4 V) { 225 int test10(int4 V) [all...] |
/external/clang/test/Parser/ |
opencl-astype.cl | 8 typedef __attribute__(( ext_vector_type(4) )) int int4; 16 // Verify int4->float3, float3->int4 works. 17 int4 i4; 19 i4 = __builtin_astype(f3, int4);
|
/external/clang/test/Sema/ |
conversion-64-32.c | 9 typedef int int4 __attribute__ ((vector_size(16))); typedef 12 int4 test1(long2 a) { 13 int4 v127 = a; // no warning.
|
ext_vector_casts.c | 4 typedef __attribute__(( ext_vector_type(4) )) int int4; typedef 12 int4 ivec4; 23 ivec4 = (int4)5.0f; 24 ivec4 = (int4)5; 25 ivec4 = (int4)vec4_3; 27 i = (int)ivec4; // expected-error {{invalid conversion between vector type 'int4' and integer type 'int' of different size}} 28 i = ivec4; // expected-error {{assigning to 'int' from incompatible type 'int4'}} 30 ivec4 = (int4)ptr; // expected-error {{invalid conversion between vector type 'int4' and scalar type 'int *'}} 40 ivec4 += vec4; // expected-error {{can't convert between vector values of different size ('int4' and 'float4')} [all...] |
typedef-retain.c | 4 typedef int int4 __attribute__((vector_size(16))); typedef 5 typedef int4* int4p; 7 void test1(float4 a, int4 *result, int i) { 8 result[i] = a; // expected-error {{assigning to 'int4' from incompatible type 'float4'}} 12 result[i] = a; // expected-error {{assigning to 'int4' from incompatible type 'float4'}}
|
ext_vector_comparisons.c | 3 typedef __attribute__(( ext_vector_type(4) )) int int4; typedef 5 static int4 test1() { 6 int4 vec, rv; 20 static int4 test2() {
|
transparent-union.c | 68 typedef int int4 __attribute__((ext_vector_type(4))); typedef 70 int4 vec; // expected-warning{{first field of a transparent union cannot have vector type 'int4'; transparent_union attribute ignored}}
|
/cts/tests/src/android/renderscript/cts/ |
fe_i32_4.rs | 4 void root(const int4 *ain, uint4 *aout) {
|
structs.rsh | 50 int4 i4;
|
/frameworks/base/graphics/java/android/renderscript/ |
Int4.java | 24 * Class for exposing the native Renderscript int4 type back to the Android system. 27 public class Int4 { 28 public Int4() { 31 public Int4(int initX, int initY, int initZ, int initW) {
|
/external/clang/test/Index/ |
complete-interfaces.m | 4 @class Int1, Int2, Int3, Int4; 26 // CHECK-CC1: ObjCInterfaceDecl:{TypedText Int4} 31 // CHECK-CC2-NEXT: ObjCInterfaceDecl:{TypedText Int4} 35 // CHECK-CC3-NEXT: ObjCInterfaceDecl:{TypedText Int4} 40 // CHECK-CC4-NEXT: ObjCInterfaceDecl:{TypedText Int4} 44 // CHECK-CC5-NEXT: ObjCInterfaceDecl:{TypedText Int4}
|
/frameworks/base/docs/html/sdk/api_diff/14/changes/ |
android.renderscript.Int4.html | 10 android.renderscript.Int4 74 Class android.renderscript.<A HREF="../../../../reference/android/renderscript/Int4.html" target="_top"><font size="+2"><code>Int4</code></font></A> 85 <A NAME="android.renderscript.Int4.ctor_added(int, int, int, int)"></A> 86 <nobr><A HREF="../../../../reference/android/renderscript/Int4.html#Int4(int, int, int, int)" target="_top"><code>Int4</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
|
/external/ppp/pppd/ |
md5.h | 45 typedef int INT4; 48 typedef long INT4;
|
/external/clang/test/SemaTemplate/ |
ext-vector-type.cpp | 86 typedef int __attribute__((ext_vector_type(4))) int4; typedef in namespace:Deduction 91 int array1[X0<int4>::value == 1? 1 : -1];
|
/frameworks/compile/slang/tests/P_math_int/ |
math_int.rs | 32 int4 i4;
|
/prebuilt/sdk/11/renderscript/include/ |
rs_cl.rsh | 42 _RS_RUNTIME int4 __attribute__((overloadable)) fnc(float4 v); 57 _RS_RUNTIME float4 __attribute__((overloadable)) fnc(float4 v1, int4 v2); \ 75 _RS_RUNTIME float4 __attribute__((overloadable)) fnc(float4 v1, int4 *v2); 91 fnc(float4 v1, float4 v2, int4 *v3); 249 _RS_RUNTIME float4 __attribute__((overloadable)) pown(float4 v, int4 p); 269 _RS_RUNTIME float4 __attribute__((overloadable)) rootn(float4 v, int4 r);
|
rs_types.rsh | 61 typedef int int4 __attribute__((ext_vector_type(4)));
|
/prebuilt/sdk/12/renderscript/include/ |
rs_cl.rsh | 42 _RS_RUNTIME int4 __attribute__((overloadable)) fnc(float4 v); 57 _RS_RUNTIME float4 __attribute__((overloadable)) fnc(float4 v1, int4 v2); \ 75 _RS_RUNTIME float4 __attribute__((overloadable)) fnc(float4 v1, int4 *v2); 91 fnc(float4 v1, float4 v2, int4 *v3); 249 _RS_RUNTIME float4 __attribute__((overloadable)) pown(float4 v, int4 p); 269 _RS_RUNTIME float4 __attribute__((overloadable)) rootn(float4 v, int4 r);
|
rs_types.rsh | 61 typedef int int4 __attribute__((ext_vector_type(4)));
|
/prebuilt/sdk/13/renderscript/include/ |
rs_cl.rsh | 42 _RS_RUNTIME int4 __attribute__((overloadable)) fnc(float4 v); 57 _RS_RUNTIME float4 __attribute__((overloadable)) fnc(float4 v1, int4 v2); \ 75 _RS_RUNTIME float4 __attribute__((overloadable)) fnc(float4 v1, int4 *v2); 91 fnc(float4 v1, float4 v2, int4 *v3); 249 _RS_RUNTIME float4 __attribute__((overloadable)) pown(float4 v, int4 p); 269 _RS_RUNTIME float4 __attribute__((overloadable)) rootn(float4 v, int4 r);
|