/external/clang/lib/CodeGen/ |
CGValue.h | 41 // The shift to make to an aggregate's alignment to make it look 123 /// The source of the alignment of an l-value; an expression of 124 /// confidence in the alignment actually matching the estimate. 131 /// The l-value was considered opaque, so the alignment was 136 /// The l-value was considered opaque, so the alignment was 141 /// Given that the base address has the given alignment source, what's 142 /// our confidence in the alignment of the field? 179 // The alignment to use when accessing this lvalue. (For vector elements, 180 // this is the alignment of the whole vector.) 181 int64_t Alignment; [all...] |
CGCall.h | 153 CharUnits Alignment; 166 Alignment(Addr.isValid() ? Addr.getAlignment() : CharUnits::Zero()) {} 171 Address getValue() const { return Address(Value.getPointer(), Alignment); }
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/ |
PciResourceSupport.c | 119 if (ResNode->Alignment > Temp->Alignment) {
121 } else if (ResNode->Alignment == Temp->Alignment) {
122 ResNodeAlignRest = ResNode->Length & ResNode->Alignment;
123 TempAlignRest = Temp->Length & Temp->Alignment;
254 // Consider the aperture alignment
256 Offset = Aperture & (Node->Alignment);
260 Aperture = Aperture + (Node->Alignment + 1) - Offset;
280 Offset = Aperture & (Node->Alignment);
[all...] |
/external/llvm/lib/Target/X86/ |
X86TargetTransformInfo.h | 75 int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, 77 int getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, 80 bool VariableMask, unsigned Alignment); 105 unsigned Alignment, unsigned AddressSpace); 107 unsigned Alignment, unsigned AddressSpace);
|
/external/swiftshader/third_party/LLVM/include/llvm/Target/ |
TargetData.h | 1 //===-- llvm/Target/TargetData.h - Data size & alignment info ---*- C++ -*-===// 10 // This file defines target properties related to datatype size/offset/alignment 39 /// Enum used to categorize the alignment types stored by TargetAlignElem 41 INTEGER_ALIGN = 'i', ///< Integer type alignment 42 VECTOR_ALIGN = 'v', ///< Vector type alignment 43 FLOAT_ALIGN = 'f', ///< Floating point type alignment 44 AGGREGATE_ALIGN = 'a', ///< Aggregate alignment 45 STACK_ALIGN = 's' ///< Stack objects alignment 48 /// Target alignment element. 50 /// Stores the alignment data associated with a given alignment type (pointer [all...] |
/frameworks/av/media/libeffects/lvm/lib/Bass/src/ |
LVDBE_Init.c | 76 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].Alignment = LVDBE_INSTANCE_ALIGN; 84 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].Alignment = LVDBE_PERSISTENT_DATA_ALIGN; 92 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_COEF].Alignment = LVDBE_PERSISTENT_COEF_ALIGN; 101 pMemoryTable->Region[LVDBE_MEMREGION_SCRATCH].Alignment = LVDBE_SCRATCH_ALIGN; 138 /* LVDBE_ALIGNMENTERROR Instance or scratch memory on incorrect alignment */ 181 if (((uintptr_t)pMemoryTable->Region[i].pBaseAddress % pMemoryTable->Region[i].Alignment)!=0){
|
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/ |
AlignmentTest.java | 28 import android.widget.GridLayout.Alignment; 44 public static final Alignment[] HORIZONTAL_ALIGNMENTS = {LEFT, CENTER, RIGHT, FILL}; 46 public static final Alignment[] VERTICAL_ALIGNMENTS = {TOP, CENTER, BASELINE, BOTTOM, FILL}; 93 Alignment va = VERTICAL_ALIGNMENTS[i]; 95 Alignment ha = HORIZONTAL_ALIGNMENTS[j];
|
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/ |
TweenApplet.java | 227 jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) 230 .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) 239 jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) 242 .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) 287 jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) 290 .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) 291 .addComponent(yoyoChk, javax.swing.GroupLayout.Alignment.TRAILING) 296 .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel2Layout.createSequentialGroup() 298 .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) 302 .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
iptypes.h | 72 ULONGLONG Alignment; 90 ULONGLONG Alignment; 117 ULONGLONG Alignment; 131 ULONGLONG Alignment; 149 ULONGLONG Alignment; 163 ULONGLONG Alignment; 178 ULONGLONG Alignment; 194 ULONGLONG Alignment; 226 ULONGLONG Alignment; 289 ULONGLONG Alignment; [all...] |
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
MCJITCAPITest.cpp | 34 unsigned alignment, 39 size, alignment, sectionID, sectionName); 43 unsigned alignment, 50 size, alignment, sectionID, sectionName, isReadOnly); 99 void useSpace(uintptr_t* UsedSize, uintptr_t Size, unsigned Alignment) { 100 uintptr_t AlignedSize = (Size + Alignment - 1) / Alignment * Alignment; 101 uintptr_t AlignedBegin = (*UsedSize + Alignment - 1) / Alignment * Alignment [all...] |
/external/clang/lib/AST/ |
RecordLayoutBuilder.cpp | 59 /// as alignment attributes on fields and pragmas in effect. 66 /// \brief Overall record alignment in bits. 579 /// Alignment - The current alignment of the record layout. 580 CharUnits Alignment; 582 /// \brief The alignment if attribute packed is not used. 591 /// \brief Whether we need to infer alignment, even when we have an 613 /// MaxFieldAlignment - The maximum allowed field alignment. This is set by 661 Alignment(CharUnits::One()), UnpackedAlignment(CharUnits::One()), 741 /// alignment [all...] |
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
MachineFunction.cpp | 68 Alignment = TM.getTargetLowering()->getMinFunctionAlignment(); 69 // FIXME: Shouldn't use pref alignment if explicit alignment is set on Fn. 71 Alignment = std::max(Alignment, 441 // The alignment of the frame index can be determined from its offset from 503 OS << ", align=" << SO.Alignment; 546 /// getEntryAlignment - Return the alignment of each entry in the jump table. 548 // The alignment of a jump table entry is the alignment of int32 unless th [all...] |
/external/llvm/lib/Target/ARM/ |
ARMConstantPoolValue.cpp | 70 unsigned Alignment) { 171 unsigned Alignment) { 172 return getExistingMachineCPValueImpl<ARMConstantPoolConstant>(CP, Alignment); 210 unsigned Alignment) { 211 return getExistingMachineCPValueImpl<ARMConstantPoolSymbol>(CP, Alignment); 250 unsigned Alignment) { 251 return getExistingMachineCPValueImpl<ARMConstantPoolMBB>(CP, Alignment);
|
/external/mesa3d/src/mesa/main/ |
pixelstore.c | 128 if (ctx->Pack.Alignment == param) 131 ctx->Pack.Alignment = param; 232 if (ctx->Unpack.Alignment == param) 235 ctx->Unpack.Alignment = param; 264 ctx->Pack.Alignment = 4; 277 ctx->Unpack.Alignment = 4; 297 ctx->DefaultPacking.Alignment = 1;
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
GuidSection.py | 54 # @retval tuple (Generated file name, section alignment)
63 self.Alignment = FfsInf.__ExtendMacro__(self.Alignment)
114 if self.Alignment == None:
115 self.Alignment = MaxAlign
117 if GenFdsGlobalVariable.GetAlignment (MaxAlign) > GenFdsGlobalVariable.GetAlignment (self.Alignment):
118 self.Alignment = MaxAlign
142 return OutputFileList, self.Alignment
246 # reset guided section alignment to none for the processed required guided data
247 self.Alignment = None [all...] |
DataSection.py | 49 # @retval tuple (Generated file name list, section alignment)
77 #Get PE Section alignment when align is set to AUTO
78 if self.Alignment == 'Auto' and self.SecType in ('TE', 'PE32'):
81 self.Alignment = str (ImageObj.SectionAlignment)
83 self.Alignment = str (ImageObj.SectionAlignment / 0x400) + 'K'
117 return FileList, self.Alignment
|
/external/eigen/test/ |
mapstride.cpp | 12 template<int Alignment,typename VectorType> void map_class_vector(const VectorType& m) 25 if(Alignment!=Aligned) 29 Map<VectorType, Alignment, InnerStride<3> > map(array, size); 51 template<int Alignment,typename MatrixType> void map_class_matrix(const MatrixType& _m) 65 if(Alignment!=Aligned) 70 if(Alignment!=Aligned) 83 Map<MatrixType, Alignment, OuterStride<Dynamic> > map(array, rows, cols, OuterStride<Dynamic>(m.innerSize()+1)); 109 Map<MatrixType, Alignment, OuterStride<OuterStrideAtCompileTime> > 131 Map<MatrixType, Alignment, Stride<Dynamic,Dynamic> > map(array, rows, cols, Stride<Dynamic,Dynamic>(2*m.innerSize()+1, 2));
|
/device/linaro/bootloader/edk2/CorebootModulePkg/CbSupportDxe/ |
CbSupportDxe.c | 25 @param Alignment Align with 2^Alignment
36 IN UINTN Alignment,
61 Alignment,
78 Alignment,
|
/device/linaro/bootloader/edk2/MdePkg/Include/Library/ |
MemoryAllocationLib.h | 105 Allocates one or more 4KB pages of type EfiBootServicesData at a specified alignment.
108 alignment specified by Alignment. The allocated buffer is returned. If Pages is 0, then NULL is
109 returned. If there is not enough memory at the specified alignment remaining to satisfy the
112 If Alignment is not a power of two and Alignment is not zero, then ASSERT().
113 If Pages plus EFI_SIZE_TO_PAGES (Alignment) overflows, then ASSERT().
116 @param Alignment The requested alignment of the allocation. Must be a power of two.
117 If Alignment is zero, then byte alignment is used. [all...] |
/external/compiler-rt/lib/scudo/ |
scudo_allocator.cpp | 61 // as of now), which fits nicely with the alignment requirements. 317 void *allocate(uptr Size, uptr Alignment, AllocType Type) { 320 if (!IsPowerOfTwo(Alignment)) { 321 dieWithMessage("ERROR: malloc alignment is not a power of 2\n"); 323 if (Alignment > MaxAlignment) 325 if (Alignment < MinAlignment) 326 Alignment = MinAlignment; 333 if (Alignment > MinAlignment) 334 ExtraBytes += Alignment; 356 if (!IsAligned(ChunkBeg, Alignment)) [all...] |
/art/runtime/utils/ |
dex_cache_arrays_layout-inl.h | 47 size_(RoundUp(call_sites_offset_ + CallSitesSize(num_call_sites), Alignment())) { 54 inline size_t DexCacheArraysLayout::Alignment() const { 55 return Alignment(pointer_size_); 58 inline constexpr size_t DexCacheArraysLayout::Alignment(PointerSize pointer_size) { 59 // mirror::Type/String/MethodTypeDexCacheType alignment is 8, 60 // i.e. higher than or equal to the pointer alignment.
|
/device/linaro/bootloader/edk2/EmulatorPkg/Library/SecPeiServicesLib/ |
FwVol.c | 19 #define GET_OCCUPIED_SIZE(ActualSize, Alignment) \ 20 (ActualSize) + (((Alignment) - ((ActualSize) & ((Alignment) - 1))) & ((Alignment) - 1))
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/ |
Imem.h | 63 @param Alignment Bits to align.
72 IN UINTN Alignment
|
/device/linaro/bootloader/edk2/Nt32Pkg/Sec/ |
FwVol.c | 23 #define GET_OCCUPIED_SIZE(ActualSize, Alignment) \
24 (ActualSize) + (((Alignment) - ((ActualSize) & ((Alignment) - 1))) & ((Alignment) - 1))
|
/device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/ |
QemuLoader.h | 41 // allocated in the zone specified by Zone, aligned at a multiple of Alignment.
45 UINT32 Alignment; // power of two
|