HomeSort by relevance Sort by last modified time
    Searched refs:align (Results 51 - 75 of 3183) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/test/MC/ELF/
align.s 8 .align 8
common2.s 10 .align 8
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
mm_malloc.h 34 _mm_malloc (size_t size, size_t align)
39 /* Error if align is not a power of two. */
40 if (align & (align - 1))
53 if (align < 2 * sizeof (void *))
54 align = 2 * sizeof (void *);
56 malloc_ptr = malloc (size + align);
60 /* Align We have at least sizeof (void *) space below malloc'd ptr. */
61 aligned_ptr = (void *) (((size_t) malloc_ptr + align)
62 & ~((size_t) (align) - 1))
    [all...]
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
mm_malloc.h 34 _mm_malloc (size_t size, size_t align)
39 /* Error if align is not a power of two. */
40 if (align & (align - 1))
53 if (align < 2 * sizeof (void *))
54 align = 2 * sizeof (void *);
56 malloc_ptr = malloc (size + align);
60 /* Align We have at least sizeof (void *) space below malloc'd ptr. */
61 aligned_ptr = (void *) (((size_t) malloc_ptr + align)
62 & ~((size_t) (align) - 1))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
mm_malloc.h 31 _mm_malloc (size_t size, size_t align)
36 /* Error if align is not a power of two. */
37 if (align & (align - 1))
50 if (align < 2 * sizeof (void *))
51 align = 2 * sizeof (void *);
53 malloc_ptr = malloc (size + align);
57 /* Align We have at least sizeof (void *) space below malloc'd ptr. */
58 aligned_ptr = (void *) (((size_t) malloc_ptr + align)
59 & ~((size_t) (align) - 1))
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/alpha/
auto-align-1.s 2 .align 4
4 $E: .align 4
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
eh1a.s 2 .align 8
eh2a.s 2 .align 4
eh3a.s 2 .align 8
eh4a.s 2 .align 8
  /external/clang/test/CodeGen/
ms-align-tentative.c 3 char __declspec(align(8192)) x;
4 // CHECK-DAG: @x = global i8 0, align 8192
6 typedef char __declspec(align(8192)) T;
8 // CHECK-DAG: @y = global i8 0, align 8192
10 T __declspec(align(8192)) z;
11 // CHECK-DAG: @z = global i8 0, align 8192
13 int __declspec(align(16)) redef;
14 int __declspec(align(32)) redef = 8;
15 // CHECK-DAG: @redef = global i32 8, align 32
17 struct __declspec(align(64)) S
    [all...]
  /external/libvpx/libvpx/vpx_mem/include/
vpx_mem_intrnl.h 27 /*returns an addr aligned to the byte boundary specified by align*/
28 #define align_addr(addr, align) \
29 (void *)(((size_t)(addr) + ((align)-1)) & ~(size_t)((align)-1))
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/
align.s 4 .align 3
7 .align 3
9 .align 4
11 .align 4
21 .align 4
25 .align 3
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
align-with-input.d 2 #ld: -T align-with-input.t
3 #error: .*:[0-9]+: error: align with input and explicit align specified
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSmcLibNull/AArch64/
ArmSmcNull.S 15 .align 3
  /external/llvm/test/MC/ELF/
common2.s 11 .align 8
pic-diff.s 23 .align 4
  /external/llvm/test/MC/MachO/
zerofill-5.s 4 .align 3
eh-frame-reloc.s 10 .align 4, 0x90
  /external/swiftshader/third_party/LLVM/test/MC/MachO/
zerofill-5.s 4 .align 3
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
undefbug.s 3 .align 4
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/unsorted/
align4.s 4 .align 64
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips-jalx-2.s 6 .align 1
9 .align 2
  /external/clang/test/Layout/
ms-x86-empty-layout.c 12 // CHECK-NEXT: | [sizeof=4, align=4
20 // CHECK-NEXT: | [sizeof=4, align=8
23 long long __declspec(align(2)) FlexArrayMemb[0];
29 // CHECK-NEXT: | [sizeof=4, align=8
32 long long __declspec(align(8)) FlexArrayMemb[0];
38 // CHECK-NEXT: | [sizeof=8, align=8
41 struct __declspec(align(4)) EmptyPackedAligned4LongLongMemb {
49 // CHECK-NEXT: | [sizeof=4, align=4
53 long long __declspec(align(8)) FlexArrayMemb[0];
60 // CHECK-NEXT: | [sizeof=8, align=
    [all...]
  /external/llvm/test/MC/ELF/ARM/
bss-non-zero-value.s 6 .align 2

Completed in 402 milliseconds

1 23 4 5 6 7 8 91011>>