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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfcomm/
common1a.c 1 char foo1 [2] __attribute__((aligned(64)));
2 char foo2 [2] __attribute__((aligned(128)));
  /bionic/tests/libs/
cfi_test_bad_lib.cpp 2 __attribute__((aligned(4096))) extern "C" char dummy[16] = {};
4 __asm__("__cfi_check = dummy + 3"); // Not aligned to anything.
  /external/clang/test/CodeGen/
2009-06-14-HighlyAligned.c 4 static int highly_aligned __attribute__((aligned(4096)));
func-aligned.c 4 void foo() __attribute__((aligned (64)));
pragma-pack-2.c 13 long long a __attribute__((aligned(8)));
14 long long b __attribute__((aligned(8)));
15 unsigned int c __attribute__((aligned(8)));
PR5060-align.c 5 static char p __attribute__((aligned(32)));
11 char p[n] __attribute__((aligned(32)));
align-global-large.c 7 volatile char x[4000] __attribute__((aligned(0x100000)));
14 volatile char y[4000] __attribute__((aligned(0x100000)));
align-local.c 3 typedef struct __attribute((aligned(16))) {int x[4];} ff;
9 struct {int x[4];} b __attribute((aligned(16)));
2007-09-26-Alignment.c 5 int x __attribute__ ((aligned (16)));
2008-10-30-ZeroPlacement.c 7 union __attribute__ ((aligned (4))) { } c[0];
vector-alignment.c 15 // At or below target max alignment with no aligned attribute should align based
26 // Alignment above target max alignment with no aligned attribute should align
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;
57 // Check non-power of 2 widths with aligned attribute.
58 double __attribute__((vector_size(24), aligned(64))) v11;
60 double __attribute__((vector_size(80), aligned(16))) v12;
  /external/compiler-rt/test/asan/TestCases/Linux/
odr_c_test.c 11 // CHECK: The following global variable is not properly aligned.
14 __attribute__((aligned(8))) int x;
15 __attribute__((aligned(1))) char y;
16 // The gold linker puts ZZZ at the start of bss (where it is aligned)
18 __attribute__((aligned(1))) char Displace[105];
19 __attribute__((aligned(1))) char ZZZ[100];
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
data1.c 3 char a1[1] __attribute__ ((aligned (ALIGNMENT1))) = { 10 };
4 char a2[2] __attribute__ ((aligned (ALIGNMENT2)));
5 char a3[3] __attribute__ ((aligned (ALIGNMENT3)));
6 char a4[4] __attribute__ ((aligned (ALIGNMENT4)));
begin.c 4 __attribute__ ((used, section (".init_array"), aligned (sizeof (void *))))
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
empty-aligned.exp 1 # Make sure empty aligned sections do not change output layout.
26 set testname "empty-aligned"
28 run_dump_test empty-aligned
empty-aligned.d 1 #source: empty-aligned.s
2 #ld: -T empty-aligned.t
  /external/clang/test/CodeGenCXX/
attr.cpp 6 int foo() __attribute__((aligned(1024)));
10 virtual void bar1() __attribute__((aligned(1)));
11 virtual void bar2() __attribute__((aligned(2)));
12 virtual void bar3() __attribute__((aligned(1024)));
13 void bar4() __attribute__((aligned(1024)));
  /external/clang/test/Sema/
pragma-pack-4.c 9 long long a __attribute__((aligned(8)));
10 long long b __attribute__((aligned(8)));
11 unsigned int c __attribute__((aligned(8)));
attr-declspec-ignored.c 3 __attribute__((visibility("hidden"))) __attribute__((aligned)) struct A; // expected-warning{{attribute 'visibility' is ignored, place it after "struct" to apply attribute to type declaration}} \
4 // expected-warning{{attribute 'aligned' is ignored, place it after "struct" to apply attribute to type declaration}}
5 __attribute__((visibility("hidden"))) __attribute__((aligned)) union B; // expected-warning{{attribute 'visibility' is ignored, place it after "union" to apply attribute to type declaration}} \
6 // expected-warning{{attribute 'aligned' is ignored, place it after "union" to apply attribute to type declaration}}
7 __attribute__((visibility("hidden"))) __attribute__((aligned)) enum C {C}; // expected-warning{{attribute 'visibility' is ignored, place it after "enum" to apply attribute to type declaration}} \
8 // expected-warning{{attribute 'aligned' is ignored, place it after "enum" to apply attribute to type declaration}}
10 __attribute__((visibility("hidden"))) __attribute__((aligned)) struct D {} d;
11 __attribute__((visibility("hidden"))) __attribute__((aligned)) union E {} e;
12 __attribute__((visibility("hidden"))) __attribute__((aligned)) enum F {F} f;
attr-aligned.c 3 int x __attribute__((aligned(3))); // expected-error {{requested alignment is not a power of 2}}
4 int y __attribute__((aligned(1 << 29))); // expected-error {{requested alignment must be 268435456 bytes or smaller}}
7 int y __attribute__((aligned(1 << 28)));
10 short g0[3] __attribute__((aligned));
14 typedef char ueber_aligned_char __attribute__((aligned(8)));
27 typedef long long __attribute__((aligned(1))) underaligned_longlong;
30 typedef long long __attribute__((aligned(1))) underaligned_complex_longlong;
34 int b __attribute__((aligned(2)));
37 struct C { int member __attribute__((aligned(2))); } c;
41 struct D { int member __attribute__((aligned(2))) __attribute__((packed)); } d
    [all...]
  /external/clang/test/SemaCXX/
attr-declspec-ignored.cpp 4 __attribute__((visibility("hidden"))) __attribute__((aligned)) class A; // expected-warning{{attribute 'visibility' is ignored, place it after "class" to apply attribute to type declaration}} \
5 // expected-warning{{attribute 'aligned' is ignored, place it after "class" to apply attribute to type declaration}}
6 __attribute__((visibility("hidden"))) __attribute__((aligned)) struct B; // expected-warning{{attribute 'visibility' is ignored, place it after "struct" to apply attribute to type declaration}} \
7 // expected-warning{{attribute 'aligned' is ignored, place it after "struct" to apply attribute to type declaration}}
8 __attribute__((visibility("hidden"))) __attribute__((aligned)) union C; // expected-warning{{attribute 'visibility' is ignored, place it after "union" to apply attribute to type declaration}} \
9 // expected-warning{{attribute 'aligned' is ignored, place it after "union" to apply attribute to type declaration}}
10 __attribute__((visibility("hidden"))) __attribute__((aligned)) enum D {D}; // expected-warning{{attribute 'visibility' is ignored, place it after "enum" to apply attribute to type declaration}} \
11 // expected-warning{{attribute 'aligned' is ignored, place it after "enum" to apply attribute to type declaration}}
15 __attribute__((visibility("hidden"))) __attribute__((aligned)) class A {} a;
16 __attribute__((visibility("hidden"))) __attribute__((aligned)) struct B {} b
    [all...]
alignment-of-derived-class.cpp 8 } __attribute__ ((aligned(16)));
10 static_assert(__alignof(A) == 16, "A should be aligned to 16 bytes");
15 static_assert(__alignof(B1) == 16, "B1 should be aligned to 16 bytes");
18 } __attribute__ ((aligned(2)));
20 static_assert(__alignof(B2) == 16, "B2 should be aligned to 16 bytes");
23 } __attribute__ ((aligned(4)));
25 static_assert(__alignof(B3) == 16, "B3 should be aligned to 16 bytes");
28 } __attribute__ ((aligned(8)));
30 static_assert(__alignof(B4) == 16, "B4 should be aligned to 16 bytes");
33 } __attribute__ ((aligned(16)))
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i860/
dual02-err.l 2 .*:7: Error: 'd\.fadd\.ss' must be 8-byte aligned
  /bionic/libc/kernel/uapi/asm-x86/asm/
siginfo.h 23 typedef long long __kernel_si_clock_t __attribute__((aligned(4)));
25 #define __ARCH_SI_ATTRIBUTES __attribute__((aligned(8)))
  /development/ndk/platforms/android-21/arch-x86/include/asm/
siginfo.h 24 typedef long long __kernel_si_clock_t __attribute__((aligned(4)));
26 #define __ARCH_SI_ATTRIBUTES __attribute__((aligned(8)))

Completed in 940 milliseconds

1 2 3 4 5 6 7 8 91011>>