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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Marvell/Library/ResetSystemLib/
MvResetSystemLib.c 116 UINT64 Alignment;
121 Alignment = ~(SIZE_64KB - 1);
127 mAddress & Alignment, SIZE_64KB,
138 Status = gDS->SetMemorySpaceAttributes (mAddress & Alignment, SIZE_64KB,
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLib/
CopyMem.c 54 UINTN Alignment;
79 Alignment = Length & 0x7;
80 if (Alignment != 0) {
84 while (Alignment-- != 0) {
120 Alignment = Length & 0x3;
121 if (Alignment != 0) {
125 while (Alignment-- != 0) {
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 89 // Check for the alignment of the type.
90 Pos = LineStr.find("Alignment:");
92 // Skip past the "Alignment:" prefix.
93 LineStr = LineStr.substr(Pos + strlen("Alignment:"));
95 unsigned long long Alignment = 0;
96 (void)LineStr.getAsInteger(10, Alignment);
97 CurrentLayout.Align = Alignment;
101 // Check for the size/alignment of the type.
117 // Parse alignment.
118 unsigned long long Alignment = 0
    [all...]
  /external/clang/test/CodeGenCXX/
alloca-align.cpp 5 unsigned Alignment;
  /external/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 33 size_t Alignment; // Alignment of the variable (power of 2).
46 size_t FrameAlignment; // Alignment for the entire frame.
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.h 611 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
613 /// alignment, not its logarithm.
680 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
681 /// means there isn't a need to check it against alignment requirement,
723 // save area. The element type defines the alignment requirement and
753 unsigned Alignment;
757 ReuseLoadInfo() : IsInvariant(false), Alignment(0), Ranges(nullptr) {}
    [all...]
  /external/llvm/lib/Transforms/Utils/
ASanStackFrameLayout.cpp 21 // We sort the stack variables by alignment (largest first) to minimize
22 // unnecessary large gaps due to alignment.
30 return a.Alignment > b.Alignment;
33 // We also force minimal alignment for all vars to kMinAlignment so that vars
34 // with e.g. alignment 1 and alignment 16 do not get reordered by CompareVars.
38 // The resulting frame size is a multiple of Alignment.
39 static size_t VarAndRedzoneSize(size_t Size, size_t Alignment) {
47 return alignTo(Res, Alignment);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
AlignOf.h 1 //===--- AlignOf.h - Portable calculation of type alignment -----*- C++ -*-===//
29 /// the alignment of the template argument. For example,
30 /// AlignOf<int>::Alignment represents the alignment of type "int". The
31 /// alignment calculated is the minimum alignment, and not necessarily
32 /// the "desired" alignment returned by GCC's __alignof__ (for example). Note
33 /// that because the alignment is an enum value, it can be used as a
37 enum { Alignment =
40 enum { Alignment_GreaterEqual_2Bytes = Alignment >= 2 ? 1 : 0 }
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciResourceSupport.h 30 UINT64 Alignment;
158 @param Alignment Alignment of resource.
171 IN UINT64 Alignment,
183 @param Alignment Alignment of resource.
196 IN UINT64 Alignment,
  /external/eigen/Eigen/src/Core/
Map.h 29 Alignment = int(MapOptions)&int(AlignedMask),
44 * \tparam MapOptions specifies the pointer alignment in bytes. It can be: \c #Aligned128, , \c #Aligned64, \c #Aligned32, \c #Aligned16, \c #Aligned8 or \c #Unaligned.
  /external/llvm/include/llvm/MC/
StringTableBuilder.h 29 unsigned Alignment;
34 StringTableBuilder(Kind K, unsigned Alignment = 1);
  /external/llvm/lib/CodeGen/
SafeStackLayout.h 35 unsigned Size, Alignment;
48 void addObject(const Value *V, unsigned Size, unsigned Alignment,
60 /// Returns the alignment of the frame.
  /external/llvm/unittests/Support/
AllocatorTest.cpp 125 // Test requesting alignment that goes past the end of the current slab.
146 void *Allocate(size_t Size, size_t /*Alignment*/) {
147 // Allocate space for the alignment, the slab, and a void* that goes right
149 size_t Alignment = 4096;
150 void *MemBase = malloc(Size + Alignment - 1 + sizeof(void*));
153 void *Slab = (void *)alignAddr((char*)MemBase + sizeof(void *), Alignment);
171 // Allocate a large-ish block with a really large alignment so that the
172 // allocator will think that it has space, but after it does the alignment it
180 // Now the big chunk with a big alignment.
  /external/swiftshader/third_party/LLVM/unittests/Support/
AllocatorTest.cpp 105 // Allocate space for the alignment, the slab, and a void* that goes right
107 size_t Alignment = 4096;
108 void *MemBase = malloc(Size + Alignment - 1 + sizeof(void*));
111 MemSlab *Slab = (MemSlab*)(((uintptr_t)MemBase+sizeof(void*)+Alignment-1) &
112 ~(uintptr_t)(Alignment - 1));
132 // Allocate a large-ish block with a really large alignment so that the
133 // allocator will think that it has space, but after it does the alignment it
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 29 enum Type { Alignment, Fillment, Region, Target, Stub, Null };
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
StringTableBuilder.h 32 unsigned Alignment;
39 StringTableBuilder(Kind K, unsigned Alignment = 1);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 37 size_t Alignment; // Alignment of the variable (power of 2).
47 size_t FrameAlignment; // Alignment for the entire frame.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
StringTableBuilder.h 32 unsigned Alignment;
39 StringTableBuilder(Kind K, unsigned Alignment = 1);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 37 size_t Alignment; // Alignment of the variable (power of 2).
47 size_t FrameAlignment; // Alignment for the entire frame.
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/
StringTableBuilder.h 32 unsigned Alignment;
39 StringTableBuilder(Kind K, unsigned Alignment = 1);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 37 size_t Alignment; // Alignment of the variable (power of 2).
47 size_t FrameAlignment; // Alignment for the entire frame.
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/
StringTableBuilder.h 32 unsigned Alignment;
39 StringTableBuilder(Kind K, unsigned Alignment = 1);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 37 size_t Alignment; // Alignment of the variable (power of 2).
47 size_t FrameAlignment; // Alignment for the entire frame.
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/
StringTableBuilder.h 32 unsigned Alignment;
39 StringTableBuilder(Kind K, unsigned Alignment = 1);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 37 size_t Alignment; // Alignment of the variable (power of 2).
47 size_t FrameAlignment; // Alignment for the entire frame.

Completed in 1390 milliseconds

1 2 3 4 5 6 7 8 91011>>