HomeSort by relevance Sort by last modified time
    Searched refs:int4 (Results 1 - 25 of 36) sorted by null

1 2

  /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_comparisons.c 3 typedef __attribute__(( ext_vector_type(4) )) int int4; typedef
5 static int4 test1() {
6 int4 vec, rv;
20 static int4 test2() {
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_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...]
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}}
  /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...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
colorcube.rs 22 static int4 gDims;
23 static int4 gCoordMul;
43 int4 baseCoord = convert_int4(*in) * gCoordMul;
44 int4 coord1 = baseCoord >> (int4)16;
45 int4 coord2 = min(coord1 + 1, gDims - 1);
47 int4 weight2 = baseCoord & 0xffff;
48 int4 weight1 = (int4)0x10000 - weight2;
wbalance.rs 29 int4 hv = rsGetElementAt_int4(histogramValues, i);
56 int4 hv = rsGetElementAt_int4(histogramValues, i);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
colorcube.rs 22 static int4 gDims;
23 static int4 gCoordMul;
43 int4 baseCoord = convert_int4(*in) * gCoordMul;
44 int4 coord1 = baseCoord >> (int4)16;
45 int4 coord2 = min(coord1 + 1, gDims - 1);
47 int4 weight2 = baseCoord & 0xffff;
48 int4 weight1 = (int4)0x10000 - weight2;
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic3DLUT.cpp 72 int4 dims = {
79 const int4 coordMul = convert_int4(m * (float4)0x8000);
105 int4 baseCoord = convert_int4(*in) * coordMul;
106 int4 coord1 = baseCoord >> (int4)15;
107 //int4 coord2 = min(coord1 + 1, gDims - 1);
109 int4 weight2 = baseCoord & 0x7fff;
110 int4 weight1 = (int4)0x8000 - weight2;
128 uint4 yz00 = ((v000 * weight1.x) + (v100 * weight2.x)) >> (int4)7
    [all...]
rsCpuIntrinsicInlines.h 43 typedef int int4 __attribute__((ext_vector_type(4))); typedef
87 static inline int4 clamp(int4 amount, int low, int high) {
88 int4 r;
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_int4.java 27 super(rstc, "int4", ctx);
33 ScriptC_int4 s = new ScriptC_int4(pRS, mRes, R.raw.int4);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_int4.java 27 super(rstc, "int4", ctx);
33 ScriptC_int4 s = new ScriptC_int4(pRS, mRes, R.raw.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/rs/tests/typecheck/
kernels.rs 64 int4 i4;
65 int4 i4i = {1, 2, 3, 4};
  /external/chromium_org/third_party/angle_dx11/src/compiler/
Initialize.cpp 26 TType *int4 = new TType(EbtInt, EbpUndefined, EvqGlobal, 4); local
262 symbolTable.insertBuiltIn(bool4, "lessThan", int4, int4);
270 symbolTable.insertBuiltIn(bool4, "lessThanEqual", int4, int4);
278 symbolTable.insertBuiltIn(bool4, "greaterThan", int4, int4);
286 symbolTable.insertBuiltIn(bool4, "greaterThanEqual", int4, int4);
294 symbolTable.insertBuiltIn(bool4, "equal", int4, int4)
    [all...]
  /frameworks/rs/scriptc/
rs_debug.rsh 216 rsDebug(const char *, int4);
rs_allocation.rsh 193 GET_ELEMENT_AT(int4)
328 SET_ELEMENT_AT(int4)
  /prebuilts/sdk/renderscript/include/
rs_debug.rsh 216 rsDebug(const char *, int4);
rs_allocation.rsh 193 GET_ELEMENT_AT(int4)
328 SET_ELEMENT_AT(int4)
  /frameworks/rs/driver/runtime/
rs_cl.c 5 extern float4 __attribute__((overloadable)) convert_float4(int4 c);
9 extern int4 __attribute__((overloadable)) convert_int4(float4 c);
61 extern int4 __attribute__((overloadable)) fnc(float4 v) { \
62 int4 r; \
130 extern float4 __attribute__((overloadable)) fnc(float4 v1, int4 v2) { \
221 extern float4 __attribute__((overloadable)) fnc(float4 v1, int4 *v2) { \
285 fnc(float4 v1, float4 v2, int4 *v3) { \
526 extern float4 __attribute__((overloadable)) pown(float4 v, int4 p) {
    [all...]
  /cts/tests/src/android/renderscript/cts/
verify.rs 121 int4 pref = convert_int4(rsGetElementAt_uchar4(in1, x, y));
122 int4 ptst = convert_int4(rsGetElementAt_uchar4(in2, x, y));
123 int4 d = convert_int4(abs(pref - ptst));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickletools.py 253 raise ValueError("not enough data in stream to read int4")
255 int4 = ArgumentDescriptor( variable
256 name='int4',
914 arg=int4,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickletools.py 253 raise ValueError("not enough data in stream to read int4")
255 int4 = ArgumentDescriptor( variable
256 name='int4',
914 arg=int4,
    [all...]

Completed in 513 milliseconds

1 2