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

1 2 3 4 5

  /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);
  /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);
AnnotationSetItem.java 28 /** the required alignment for instances of this class */
29 private static final int ALIGNMENT = 4;
50 super(ALIGNMENT, writeSize(annotations));
EncodedArrayItem.java 36 /** the required alignment for instances of this class */
37 private static final int ALIGNMENT = 1;
58 super(ALIGNMENT, -1);
AnnotationItem.java 46 /** the required alignment for instances of this class */
47 private static final int ALIGNMENT = 1;
107 super(ALIGNMENT, -1);
DebugInfoItem.java 32 /** the required alignment for instances of this class */
33 private static final int ALIGNMENT = 1;
47 super (ALIGNMENT, -1);
MapItem.java 28 /** file alignment of this class, in bytes */
29 private static final int ALIGNMENT = 4;
126 super(ALIGNMENT, WRITE_SIZE);
162 super(ALIGNMENT, WRITE_SIZE);
TypeListItem.java 30 /** alignment requirement */
31 private static final int ALIGNMENT = 4;
48 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_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);
AnnotationSetItem.java 28 /** the required alignment for instances of this class */
29 private static final int ALIGNMENT = 4;
51 super(ALIGNMENT, writeSize(annotations));
EncodedArrayItem.java 27 /** the required alignment for instances of this class */
28 private static final int ALIGNMENT = 1;
49 super(ALIGNMENT, -1);
AnnotationItem.java 43 /** the required alignment for instances of this class */
44 private static final int ALIGNMENT = 1;
107 super(ALIGNMENT, -1);
DebugInfoItem.java 29 /** the required alignment for instances of this class */
30 private static final int ALIGNMENT = 1;
44 super (ALIGNMENT, -1);
MapItem.java 27 /** file alignment of this class, in bytes */
28 private static final int ALIGNMENT = 4;
125 super(ALIGNMENT, WRITE_SIZE);
161 super(ALIGNMENT, WRITE_SIZE);
TypeListItem.java 29 /** alignment requirement */
30 private static final int ALIGNMENT = 4;
47 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_SIZE);
  /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/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/libdrm/libkms/
radeon.c 46 #define ALIGNMENT 512
103 pitch = (pitch + ALIGNMENT - 1) & ~(ALIGNMENT - 1);
116 arg.alignment = ALIGNMENT;
  /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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pyarena.c 15 #define ALIGNMENT 8
16 #define ALIGNMENT_MASK (ALIGNMENT - 1)

Completed in 2973 milliseconds

1 2 3 4 5