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

1 2 3 4 5

  /external/clang/test/CodeGen/
vector-alignment.c 17 double __attribute__((vector_size(16))) v1;
21 double __attribute__((vector_size(32))) v2;
28 double __attribute__((vector_size(64))) v3;
32 double __attribute__((vector_size(1024))) v4;
38 double __attribute__((vector_size(16), aligned(16))) v5;
40 double __attribute__((vector_size(16), aligned(64))) v6;
42 double __attribute__((vector_size(32), aligned(16))) v7;
44 double __attribute__((vector_size(32), aligned(64))) v8;
48 double __attribute__((vector_size(24))) v9;
52 double __attribute__((vector_size(40))) v10
    [all...]
x86_32-arguments-nommx.c 4 typedef int __attribute__((vector_size (8))) i32v2;
9 typedef int __attribute__((vector_size (16))) i32v4;
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)));
attr-mode-vector-types.c 3 typedef int __attribute__((mode(byte))) __attribute__((vector_size(4))) vec_t1;
4 typedef int __attribute__((mode(QI))) __attribute__((vector_size(8))) vec_t2;
5 typedef int __attribute__((mode(SI))) __attribute__((vector_size(16))) vec_t3;
6 typedef int __attribute__((mode(DI))) __attribute__((vector_size(64)))vec_t4;
7 typedef float __attribute__((mode(SF))) __attribute__((vector_size(128))) vec_t5;
8 typedef float __attribute__((mode(DF))) __attribute__((vector_size(256))) vec_t6;
2010-02-18-Dbg-VectorType.c 2 typedef float float4 __attribute__((vector_size(16)));
builtinshufflevector.c 3 typedef int v4si __attribute__ ((vector_size (16)));
ppc64-struct-onevect.c 4 typedef float v4sf __attribute__ ((vector_size (16)));
alignment.c 31 typedef float __attribute__((vector_size(16), aligned(4))) packedfloat4;
53 typedef float __attribute__((vector_size(16), aligned(64))) float4align64;
63 typedef float __attribute__((vector_size(16), aligned(16))) float4align16;
64 typedef float __attribute__((vector_size(16), aligned(2))) float4align2;
builtins-systemz-error2.c 4 typedef __attribute__((vector_size(16))) char v16i8;
mips-inline-asm-modifiers.c 8 typedef int v4i32 __attribute__((vector_size(16)));
ppc64-qpx-vector.c 4 typedef float v4sf __attribute__((vector_size(16)));
5 typedef double v4df __attribute__((vector_size(32)));
  /external/clang/test/CodeGenCXX/
2008-01-12-VecInit.cpp 4 typedef int __attribute__((vector_size(16))) v;
static-init-4.cpp 3 typedef __attribute__((vector_size(4*4))) float float32x4_t;
2007-05-03-VectorInit.cpp 4 typedef float v4sf __attribute__((vector_size(16)));
  /external/libcxx/test/libcxx/atomics/atomics.align/
align.pass.sh.cpp 69 CHECK_ALIGNMENT(int __attribute__((vector_size(1 * sizeof(int)))));
70 CHECK_ALIGNMENT(int __attribute__((vector_size(2 * sizeof(int)))));
71 CHECK_ALIGNMENT(int __attribute__((vector_size(4 * sizeof(int)))));
72 CHECK_ALIGNMENT(int __attribute__((vector_size(16 * sizeof(int)))));
73 CHECK_ALIGNMENT(int __attribute__((vector_size(32 * sizeof(int)))));
74 CHECK_ALIGNMENT(float __attribute__((vector_size(1 * sizeof(float)))));
75 CHECK_ALIGNMENT(float __attribute__((vector_size(2 * sizeof(float)))));
76 CHECK_ALIGNMENT(float __attribute__((vector_size(4 * sizeof(float)))));
77 CHECK_ALIGNMENT(float __attribute__((vector_size(16 * sizeof(float)))));
78 CHECK_ALIGNMENT(float __attribute__((vector_size(32 * sizeof(float)))))
    [all...]
  /external/clang/test/Sema/
attr-mode-vector-types.c 4 typedef int __attribute__((mode(byte))) __attribute__((vector_size(256))) vec_t1;
5 typedef int __attribute__((mode(QI))) __attribute__((vector_size(256))) vec_t2;
6 typedef int __attribute__((mode(SI))) __attribute__((vector_size(256))) vec_t3;
7 typedef int __attribute__((mode(DI))) __attribute__((vector_size(256)))vec_t4;
8 typedef float __attribute__((mode(SF))) __attribute__((vector_size(256))) vec_t5;
9 typedef float __attribute__((mode(DF))) __attribute__((vector_size(256))) vec_t6;
10 typedef float __attribute__((mode(XF))) __attribute__((vector_size(256))) vec_t7;
12 typedef int v8qi __attribute__ ((mode(QI))) __attribute__ ((vector_size(8)));
14 // expected-warning@-1{{specifying vector types with the 'mode' attribute is deprecated; use the 'vector_size' attribute instead}}
17 // expected-warning@-1{{specifying vector types with the 'mode' attribute is deprecated; use the 'vector_size' attribute instead}
    [all...]
vector-init.c 4 typedef float float4 __attribute__((vector_size(16)));
20 __attribute__((vector_size(16))) float f1(void) {
21 __attribute__((vector_size(16))) float vec = {0.0f, 0.0f, 0.0f};
25 __attribute__((vector_size(16))) float f2(
26 __attribute__((vector_size(16))) float a1) {
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;
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)));
big-endian-neon-initializers.c 12 typedef int v4si __attribute__ ((vector_size (16)));
conversion-64-32.c 9 typedef int int4 __attribute__ ((vector_size(16)));
init-vector.c 4 typedef float __attribute__((vector_size (16))) v4f_t;
  /external/clang/test/SemaCXX/
vector-no-lax.cpp 2 typedef unsigned int __attribute__((vector_size (16))) vUInt32;
3 typedef int __attribute__((vector_size (16))) vSInt32;
  /external/libcxx/test/std/atomics/atomics.lockfree/
isalwayslockfree.pass.cpp 58 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(1 * sizeof(int)))));
59 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(2 * sizeof(int)))));
60 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(4 * sizeof(int)))));
61 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(16 * sizeof(int)))));
62 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(32 * sizeof(int)))));
63 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(1 * sizeof(float)))));
64 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(2 * sizeof(float)))));
65 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(4 * sizeof(float)))));
66 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(16 * sizeof(float)))));
67 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(32 * sizeof(float)))))
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/atomics/atomics.lockfree/
isalwayslockfree.pass.cpp 58 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(1 * sizeof(int)))));
59 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(2 * sizeof(int)))));
60 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(4 * sizeof(int)))));
61 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(16 * sizeof(int)))));
62 CHECK_ALWAYS_LOCK_FREE(int __attribute__((vector_size(32 * sizeof(int)))));
63 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(1 * sizeof(float)))));
64 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(2 * sizeof(float)))));
65 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(4 * sizeof(float)))));
66 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(16 * sizeof(float)))));
67 CHECK_ALWAYS_LOCK_FREE(float __attribute__((vector_size(32 * sizeof(float)))))
    [all...]
  /external/clang/test/Index/
print-type.c 10 int __attribute__((vector_size(16))) x;
11 typedef int __attribute__((vector_size(16))) int4_t;

Completed in 477 milliseconds

1 2 3 4 5