Searched defs:Alignment (Results 1 - 25 of 134) sorted by relevance

123456

/external/llvm/lib/Target/Mips/
H A DMipsFrameLowering.h28 explicit MipsFrameLowering(const MipsSubtarget &sti, unsigned Alignment) argument
29 : TargetFrameLowering(StackGrowsDown, Alignment, 0, Alignment), STI(sti) {}
/external/clang/lib/AST/
H A DDeclGroup.cpp21 static_assert(sizeof(DeclGroup) % llvm::AlignOf<void *>::Alignment == 0, member in class:llvm::AlignOf
25 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
H A DExternalASTSource.cpp46 const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment,
45 layoutRecordType( const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &BaseOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &VirtualBaseOffsets) argument
/external/clang/test/CodeGenCXX/
H A Dalloca-align.cpp5 unsigned Alignment; member in struct:s0
/external/lldb/source/Symbol/
H A DClangExternalASTSourceCallbacks.cpp147 uint64_t &Alignment,
156 Alignment,
145 layoutRecordType(const clang::RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap <const clang::FieldDecl *, uint64_t> &FieldOffsets, llvm::DenseMap <const clang::CXXRecordDecl *, clang::CharUnits> &BaseOffsets, llvm::DenseMap <const clang::CXXRecordDecl *, clang::CharUnits> &VirtualBaseOffsets) argument
/external/llvm/include/llvm/Transforms/Utils/
H A DASanStackFrameLayout.h33 size_t Alignment; // Alignment of the variable (power of 2). member in struct:llvm::ASanStackVariableDescription
46 size_t FrameAlignment; // Alignment for the entire frame.
/external/llvm/tools/lli/
H A DRemoteTarget.cpp31 bool RemoteTarget::allocateSpace(size_t Size, unsigned Alignment, argument
37 if ((uintptr_t)Mem.base() % Alignment) {
H A DRemoteMemoryManager.h34 : MB(mb), Alignment(a), IsCode(code) {}
37 unsigned Alignment; member in struct:llvm::RemoteMemoryManager::Allocation
69 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
73 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
H A DRemoteMemoryManager.cpp33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, argument
41 AllocatedSections.push_back( Allocation(Block, Alignment, true) );
43 UnmappedSections.push_back( Allocation(Block, Alignment, true) );
48 allocateDataSection(uintptr_t Size, unsigned Alignment, argument
57 AllocatedSections.push_back( Allocation(Block, Alignment, false) );
59 UnmappedSections.push_back( Allocation(Block, Alignment, false) );
102 unsigned Align = Section.Alignment;
119 unsigned Align = Section.Alignment;
H A DRemoteTargetExternal.cpp31 bool RemoteTargetExternal::allocateSpace(size_t Size, unsigned Alignment, argument
34 ", align: " << Alignment << "\n"); local
35 if (!SendAllocateSpace(Alignment, Size)) {
119 bool RemoteTargetExternal::SendAllocateSpace(uint32_t Alignment, uint32_t Size) { argument
125 AppendWrite((const void *)&Alignment, 4);
/external/clang/lib/Frontend/
H A DLayoutOverrideSource.cpp90 Pos = LineStr.find("Alignment:");
92 // Skip past the "Alignment:" prefix.
93 LineStr = LineStr.substr(Pos + strlen("Alignment:"));
95 unsigned long long Alignment = 0; local
96 (void)LineStr.getAsInteger(10, Alignment);
97 CurrentLayout.Align = Alignment;
118 unsigned long long Alignment = 0; local
119 (void)LineStr.getAsInteger(10, Alignment);
120 CurrentLayout.Align = Alignment;
157 uint64_t &Size, uint64_t &Alignment,
156 layoutRecordType(const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &BaseOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &VirtualBaseOffsets) argument
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp45 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) { argument
46 unsigned AlignMask = Alignment - 1;
/external/llvm/unittests/Support/
H A DAllocatorTest.cpp139 void *Allocate(size_t Size, size_t /*Alignment*/) {
142 size_t Alignment = 4096; local
143 void *MemBase = malloc(Size + Alignment - 1 + sizeof(void*));
146 void *Slab = (void *)alignAddr((char*)MemBase + sizeof(void *), Alignment);
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.h23 uptr Alignment; member in struct:__ubsan::TypeMismatchData
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h57 unsigned Alignment) = 0;
86 unsigned Alignment; member in class:llvm::MachineConstantPoolEntry
89 : Alignment(A) {
93 : Alignment(A) {
95 Alignment |= 1U << (sizeof(unsigned)*CHAR_BIT-1);
102 return (int)Alignment < 0;
106 return Alignment & ~(1 << (sizeof(unsigned)*CHAR_BIT-1));
158 unsigned getConstantPoolIndex(const Constant *C, unsigned Alignment);
159 unsigned getConstantPoolIndex(MachineConstantPoolValue *V,unsigned Alignment);
/external/llvm/lib/ExecutionEngine/
H A DSectionMemoryManager.cpp22 unsigned Alignment,
27 return allocateSection(RODataMem, Size, Alignment);
28 return allocateSection(RWDataMem, Size, Alignment);
32 unsigned Alignment,
35 return allocateSection(CodeMem, Size, Alignment);
40 unsigned Alignment) {
41 if (!Alignment)
42 Alignment = 16;
44 assert(!(Alignment & (Alignment
21 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
31 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
38 allocateSection(MemoryGroup &MemGroup, uintptr_t Size, unsigned Alignment) argument
[all...]
/external/llvm/lib/Transforms/Utils/
H A DASanStackFrameLayout.cpp30 return a.Alignment > b.Alignment;
38 // The resulting frame size is a multiple of Alignment.
39 static size_t VarAndRedzoneSize(size_t Size, size_t Alignment) { argument
47 return RoundUpToAlignment(Res, Alignment);
61 Vars[i].Alignment = std::max(Vars[i].Alignment, kMinAlignment);
67 Layout->FrameAlignment = std::max(Granularity, Vars[0].Alignment);
71 Vars[0].Alignment);
76 size_t Alignment local
[all...]
/external/clang/include/clang/AST/
H A DRecordLayout.h66 // Alignment - Alignment of record in characters.
67 CharUnits Alignment; member in class:clang::ASTRecordLayout
171 CharUnits getAlignment() const { return Alignment; }
H A DAttr.h68 size_t Alignment = 8) throw() {
69 return ::operator new(Bytes, C, Alignment);
72 size_t Alignment) throw() {
73 return ::operator delete(Ptr, C, Alignment);
71 operator delete(void *Ptr, ASTContext &C, size_t Alignment) argument
/external/eigen/Eigen/src/Core/
H A DStableNorm.h162 Alignment = (int(Flags)&DirectAccessBit) || (int(Flags)&AlignedBit) ? 1 : 0 enumerator in enum:Eigen::__anon4090
169 internal::stable_norm_kernel(this->segment(bi,(min)(blockSize, n - bi)).template forceAlignedAccessIf<Alignment>(), ssq, scale, invScale);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DBillboardControl.java55 private Alignment alignment;
60 public enum Alignment { enum in class:BillboardControl
87 alignment = Alignment.Screen;
275 public Alignment getAlignment() {
284 public void setAlignment(Alignment alignment) {
295 capsule.write(alignment, "alignment", Alignment.Screen);
305 alignment = capsule.readEnum("alignment", Alignment.class, Alignment.Screen);
/external/llvm/include/llvm/Object/
H A DCOFFYAML.h57 unsigned Alignment; member in struct:llvm::COFFYAML::Section
/external/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp64 unsigned Alignment) {
165 unsigned Alignment) {
166 return getExistingMachineCPValueImpl<ARMConstantPoolConstant>(CP, Alignment);
204 unsigned Alignment) {
205 return getExistingMachineCPValueImpl<ARMConstantPoolSymbol>(CP, Alignment);
244 unsigned Alignment) {
245 return getExistingMachineCPValueImpl<ARMConstantPoolMBB>(CP, Alignment);
63 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) argument
164 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) argument
203 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) argument
243 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) argument
/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp107 uint32_t Alignment = 0; local
109 rc = ReadBytes(&Alignment, 4);
116 RT->allocateSpace(AllocSize, Alignment, Addr);
/external/llvm/tools/llvm-cov/
H A DCoverageReport.cpp30 AlignmentKind Alignment; member in struct:__anon11159::Column
33 : Str(Str), Width(Width), Trim(NoTrim), Alignment(LeftAlignment) {}
41 Alignment = Value;
55 if (Alignment == RightAlignment) {

Completed in 715 milliseconds

123456