Searched refs:vector_size (Results 1 – 25 of 79) sorted by relevance
1234
/external/clang/test/CodeGen/ |
D | systemz-abi-vector.c | 5 typedef __attribute__((vector_size(1))) char v1i8; 7 typedef __attribute__((vector_size(2))) char v2i8; 8 typedef __attribute__((vector_size(2))) short v1i16; 10 typedef __attribute__((vector_size(4))) char v4i8; 11 typedef __attribute__((vector_size(4))) short v2i16; 12 typedef __attribute__((vector_size(4))) int v1i32; 13 typedef __attribute__((vector_size(4))) float v1f32; 15 typedef __attribute__((vector_size(8))) char v8i8; 16 typedef __attribute__((vector_size(8))) short v4i16; 17 typedef __attribute__((vector_size(8))) int v2i32; [all …]
|
D | vector-alignment.c | 6 double __attribute__((vector_size(16))) v1; 8 double __attribute__((vector_size(32))) v2; 13 double __attribute__((vector_size(64))) v3; 15 double __attribute__((vector_size(1024))) v4; 19 double __attribute__((vector_size(16), aligned(16))) v5; 21 double __attribute__((vector_size(16), aligned(64))) v6; 23 double __attribute__((vector_size(32), aligned(16))) v7; 25 double __attribute__((vector_size(32), aligned(64))) v8; 29 double __attribute__((vector_size(24))) v9; 31 double __attribute__((vector_size(40))) v10; [all …]
|
D | x86_32-arguments-darwin.c | 79 typedef short T11 __attribute__ ((vector_size (4))); 81 typedef int T12 __attribute__ ((vector_size (8))); 83 typedef long long T13 __attribute__ ((vector_size (8))); 85 typedef double T14 __attribute__ ((vector_size (8))); 87 typedef long long T15 __attribute__ ((vector_size (16))); 89 typedef double T16 __attribute__ ((vector_size (16))); 157 typedef int v39 __attribute((vector_size(16))); 252 typedef int __attribute__((vector_size (8))) t56_v2i; 253 typedef double __attribute__((vector_size (8))) t56_v1d; 254 typedef int __attribute__((vector_size (16))) t56_v4i; [all …]
|
D | ppc64-vector.c | 3 typedef short v2i16 __attribute__((vector_size (4))); 4 typedef short v3i16 __attribute__((vector_size (6))); 5 typedef short v4i16 __attribute__((vector_size (8))); 6 typedef short v6i16 __attribute__((vector_size (12))); 7 typedef short v8i16 __attribute__((vector_size (16))); 8 typedef short v16i16 __attribute__((vector_size (32)));
|
D | x86_32-arguments-linux.c | 26 typedef int __attribute__((vector_size (8))) t56_v2i; 27 typedef double __attribute__((vector_size (8))) t56_v1d; 28 typedef int __attribute__((vector_size (16))) t56_v4i; 29 typedef double __attribute__((vector_size (16))) t56_v2d; 30 typedef int __attribute__((vector_size (32))) t56_v8i; 31 typedef double __attribute__((vector_size (32))) t56_v4d;
|
D | builtins-x86.c | 11 typedef char V8c __attribute__((vector_size(8 * sizeof(char)))); 12 typedef signed short V4s __attribute__((vector_size(8))); 13 typedef signed int V2i __attribute__((vector_size(8))); 14 typedef signed long long V1LLi __attribute__((vector_size(8))); 16 typedef float V2f __attribute__((vector_size(8))); 19 typedef char V16c __attribute__((vector_size(16))); 20 typedef signed short V8s __attribute__((vector_size(16))); 21 typedef signed int V4i __attribute__((vector_size(16))); 22 typedef signed long long V2LLi __attribute__((vector_size(16))); 24 typedef float V4f __attribute__((vector_size(16))); [all …]
|
D | x86_32-inline-asm.c | 14 typedef float __m128 __attribute__ ((vector_size (16))); 15 typedef float __m256 __attribute__ ((vector_size (32))); 16 typedef float __m512 __attribute__ ((vector_size (64)));
|
D | x86_32-arguments-nommx.c | 4 typedef int __attribute__((vector_size (8))) i32v2; 9 typedef int __attribute__((vector_size (16))) i32v4;
|
D | const-init.c | 137 typedef long long v1i64 __attribute((vector_size(8))); in g28() 138 typedef short v12i16 __attribute((vector_size(24))); in g28() 139 typedef long double v2f80 __attribute((vector_size(24))); in g28()
|
D | ppc64-qpx-vector.c | 4 typedef float v4sf __attribute__((vector_size(16))); 5 typedef double v4df __attribute__((vector_size(32)));
|
D | alignment.c | 31 typedef float __attribute__((vector_size(16), aligned(4))) packedfloat4; 53 typedef float __attribute__((vector_size(16), aligned(64))) float4align64;
|
D | vector.c | 11 typedef int vty __attribute((vector_size(16))); 15 typedef float vec4 __attribute__((vector_size(16)));
|
/external/clang/test/Sema/ |
D | vector-init.c | 4 typedef float float4 __attribute__((vector_size(16))); 20 __attribute__((vector_size(16))) float f1(void) { in f1() 21 __attribute__((vector_size(16))) float vec = {0.0f, 0.0f, 0.0f}; in f1() 25 __attribute__((vector_size(16))) float f2( in f2() 26 __attribute__((vector_size(16))) float a1) { in f2() 37 typedef long long __attribute__((vector_size(16))) longlong2; 38 typedef short __attribute__((vector_size(16))) short8; 39 typedef short __attribute__((vector_size(8))) short4;
|
D | vector-assign.c | 2 typedef unsigned int v2u __attribute__ ((vector_size (8))); 3 typedef signed int v2s __attribute__ ((vector_size (8))); 4 typedef signed int v1s __attribute__ ((vector_size (4))); 5 typedef float v2f __attribute__ ((vector_size(8))); 6 typedef signed short v4ss __attribute__ ((vector_size (8))); 42 float test2(__attribute__((vector_size(16))) float a, int b) { in test2()
|
D | vector-cast.c | 3 typedef long long t1 __attribute__ ((vector_size (8))); 4 typedef char t2 __attribute__ ((vector_size (16))); 5 typedef float t3 __attribute__ ((vector_size (16))); 39 typedef float float2 __attribute__ ((vector_size (8))); 50 typedef short short_sizeof_pointer __attribute__((vector_size(sizeof(void*))));
|
D | types.c | 56 int __attribute__ ((vector_size (8), vector_size (8))) v; // expected-error {{invalid vector eleme… 72 int __attribute__ ((vector_size(8192))) x1; // expected-error {{vector size too large}} 76 enum { e_2 } x3 __attribute__((vector_size(64))); // expected-error {{invalid vector element type}}
|
D | vector-ops.c | 2 typedef unsigned int v2u __attribute__ ((vector_size (8))); 3 typedef int v2s __attribute__ ((vector_size (8))); 4 typedef float v2f __attribute__ ((vector_size(8)));
|
D | typedef-retain.c | 3 typedef float float4 __attribute__((vector_size(16))); 4 typedef int int4 __attribute__((vector_size(16)));
|
D | altivec-init.c | 3 typedef int v4 __attribute((vector_size(16))); 4 typedef short v8 __attribute((vector_size(16)));
|
/external/elfutils/src/tests/ |
D | funcretval_test.c | 37 typedef signed char __attribute__ ((vector_size (8))) vec_char_8_t; 43 typedef short __attribute__ ((vector_size (8))) vec_short_8_t; 49 typedef int __attribute__ ((vector_size (8))) vec_int_8_t; 55 typedef long __attribute__ ((vector_size (8))) vec_long_8_t; 61 typedef float __attribute__ ((vector_size (8))) vec_float_8_t; 67 typedef double __attribute__ ((vector_size (8))) vec_double_8_t; 78 typedef signed char __attribute__ ((vector_size (16))) vec_char_16_t; 84 typedef short __attribute__ ((vector_size (16))) vec_short_16_t; 90 typedef int __attribute__ ((vector_size (16))) vec_int_16_t; 96 typedef long __attribute__ ((vector_size (16))) vec_long_16_t; [all …]
|
/external/mesa3d/include/CL/ |
D | cl_platform.h | 302 typedef float __cl_float4 __attribute__((vector_size(16))); 316 typedef cl_uchar __cl_uchar16 __attribute__((vector_size(16))); 317 typedef cl_char __cl_char16 __attribute__((vector_size(16))); 318 typedef cl_ushort __cl_ushort8 __attribute__((vector_size(16))); 319 typedef cl_short __cl_short8 __attribute__((vector_size(16))); 320 typedef cl_uint __cl_uint4 __attribute__((vector_size(16))); 321 typedef cl_int __cl_int4 __attribute__((vector_size(16))); 322 typedef cl_ulong __cl_ulong2 __attribute__((vector_size(16))); 323 typedef cl_long __cl_long2 __attribute__((vector_size(16))); 324 typedef cl_double __cl_double2 __attribute__((vector_size(16))); [all …]
|
/external/lldb/tools/lldb-perf/common/stepping/ |
D | stepping-testcase.cpp | 31 size_t vector_size; in main() local 39 vector_size = my_vector.size(); in main() 41 return vector_size == 0 ? 0 : 1; in main()
|
/external/clang/test/SemaCXX/ |
D | vector-no-lax.cpp | 2 typedef unsigned int __attribute__((vector_size (16))) vUInt32; 3 typedef int __attribute__((vector_size (16))) vSInt32;
|
/external/clang/test/Index/ |
D | print-type.c | 10 int __attribute__((vector_size(16))) x; 11 typedef int __attribute__((vector_size(16))) int4_t;
|
/external/clang/test/Parser/ |
D | atomic.c | 34 typedef _Atomic int __attribute__((vector_size(16))) atomic_vector_int; 35 typedef _Atomic(int __attribute__((vector_size(16)))) atomic_vector_int;
|
1234