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

1 2 3 4 5

  /toolchain/binutils/binutils-2.25/ld/emulparams/
elf32xstormy16.sh 8 ALIGNMENT=2
sun4.sh 5 ALIGNMENT=8
elf32lm32.sh 10 ALIGNMENT=4
elf32microblaze.sh 7 ALIGNMENT=4
elf32microblazeel.sh 7 ALIGNMENT=4
crislinux.sh 11 # Needed? Perhaps should be page-size alignment.
12 ALIGNMENT=32
elf32_sparc.sh 10 ALIGNMENT=8
elf32mb_linux.sh 7 ALIGNMENT=4
elf32mbel_linux.sh 7 ALIGNMENT=4
elf64tilegx.sh 11 ALIGNMENT=64
elf32_spu.sh 8 ALIGNMENT=16
elf32epiphany.sh 36 ALIGNMENT=8
elf32tilegx.sh 11 ALIGNMENT=64
  /external/eigen/test/
dynalloc.cpp 13 #define ALIGNMENT EIGEN_MAX_ALIGN_BYTES
15 #define ALIGNMENT 1
25 VERIFY(internal::UIntPtr(p)%ALIGNMENT==0);
34 for(int i = ALIGNMENT; i < 1000; i++)
37 VERIFY(internal::UIntPtr(p)%ALIGNMENT==0);
46 for(int i = ALIGNMENT; i < 1000; i++)
49 VERIFY(internal::UIntPtr(p)%ALIGNMENT==0);
58 for(int i = ALIGNMENT; i < 400; i++)
61 VERIFY(internal::UIntPtr(p)%ALIGNMENT==0);
86 // TODO have to be updated once we support multiple alignment value
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
ARMOptions.java 19 private static final int ALIGNMENT = 4;
22 super(ALIGNMENT);
ARMThumbOptions.java 19 private static final int ALIGNMENT = 2;
22 super(ALIGNMENT);
IA64Options.java 19 private static final int ALIGNMENT = 16;
22 super(ALIGNMENT);
PowerPCOptions.java 19 private static final int ALIGNMENT = 4;
22 super(ALIGNMENT);
SPARCOptions.java 19 private static final int ALIGNMENT = 4;
22 super(ALIGNMENT);
X86Options.java 19 private static final int ALIGNMENT = 1;
22 super(ALIGNMENT);
  /libcore/luni/src/test/native/
libcore_io_Memory_test.cpp 25 #define ALIGNMENT 8
32 ASSERT_EQ(0, posix_memalign(reinterpret_cast<void**>(&dst), ALIGNMENT,
33 sizeof(T) * NUM_ELEMENTS + ALIGNMENT));
34 ASSERT_EQ(0, posix_memalign(reinterpret_cast<void**>(&src), ALIGNMENT,
35 sizeof(T) * NUM_ELEMENTS + ALIGNMENT));
44 for (size_t dst_align = 0; dst_align < ALIGNMENT; dst_align++) {
46 for (size_t src_align = 0; src_align < ALIGNMENT; src_align++) {
87 ASSERT_EQ(0, posix_memalign(reinterpret_cast<void**>(&src), ALIGNMENT,
88 sizeof(T) + ALIGNMENT));
89 for (size_t i = 0; i < ALIGNMENT; i++)
    [all...]
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
BindingsHelper.java 15 * Alignment in bytes for mojo serialization.
17 public static final int ALIGNMENT = 8;
76 * Align |size| on {@link BindingsHelper#ALIGNMENT}.
79 return (size + ALIGNMENT - 1) & ~(ALIGNMENT - 1);
83 * Align |size| on {@link BindingsHelper#ALIGNMENT}.
86 return (size + ALIGNMENT - 1) & ~(ALIGNMENT - 1);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetRefItem.java 26 /** the required alignment for instances of this class */
27 private static final int ALIGNMENT = 4;
41 super(ALIGNMENT, WRITE_SIZE);
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetRefItem.java 26 /** the required alignment for instances of this class */
27 private static final int ALIGNMENT = 4;
41 super(ALIGNMENT, WRITE_SIZE);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
bsd.h 73 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGNMENT) \
76 fprintf ((FILE), ",%u,%u\n", (int)(SIZE), (int)(ALIGNMENT) / BITS_PER_UNIT))

Completed in 474 milliseconds

1 2 3 4 5