Searched refs:Alignment (Results 1 - 25 of 140) sorted by relevance

123456

/external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
H A DAlignment.h1 #include <JavaScriptCore/Alignment.h>
/external/webkit/Tools/DumpRenderTree/ForwardingHeaders/wtf/
H A DAlignment.h1 #include <JavaScriptCore/Alignment.h>
/external/webkit/Source/WebCore/ForwardingHeaders/wtf/
H A DAlignment.h3 #include <JavaScriptCore/Alignment.h>
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJITMemoryManager.h31 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, argument
33 return JMM->allocateDataSection(Size, Alignment, SectionID);
36 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, argument
38 return JMM->allocateCodeSection(Size, Alignment, SectionID);
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h56 unsigned Alignment) = 0;
85 unsigned Alignment; member in class:llvm::MachineConstantPoolEntry
88 : Alignment(A) {
92 : Alignment(A) {
94 Alignment |= 1U << (sizeof(unsigned)*CHAR_BIT-1);
101 return (int)Alignment < 0;
105 return Alignment & ~(1 << (sizeof(unsigned)*CHAR_BIT-1));
153 unsigned getConstantPoolIndex(const Constant *C, unsigned Alignment);
154 unsigned getConstantPoolIndex(MachineConstantPoolValue *V,unsigned Alignment);
H A DJITCodeEmitter.h75 unsigned Alignment) = 0;
151 void emitAlignment(unsigned Alignment) { argument
152 if (Alignment == 0) Alignment = 1;
154 Alignment);
160 void emitAlignmentWithFill(unsigned Alignment, uint8_t Fill) { argument
161 if (Alignment == 0) Alignment = 1;
163 Alignment);
256 /// failure. Alignment i
257 allocateSpace(uintptr_t Size, unsigned Alignment) argument
[all...]
H A DMachineFrameInfo.h90 // Alignment - The required alignment of this stack slot.
91 unsigned Alignment; member in struct:llvm::MachineFrameInfo::StackObject
117 : SPOffset(SP), Size(Sz), Alignment(Al), isImmutable(IM),
359 return Objects[ObjectIdx+NumFixedObjects].Alignment;
366 Objects[ObjectIdx+NumFixedObjects].Alignment = Align;
497 int CreateStackObject(uint64_t Size, unsigned Alignment, bool isSS, argument
500 Objects.push_back(StackObject(Size, Alignment, 0, false, isSS, MayNeedSP,
504 ensureMaxAlignment(Alignment);
512 int CreateSpillStackObject(uint64_t Size, unsigned Alignment) { argument
513 CreateStackObject(Size, Alignment, tru
531 CreateVariableSizedObject(unsigned Alignment) argument
[all...]
/external/llvm/include/llvm/Support/
H A DAlignOf.h33 /// AlignOf<int>::Alignment represents the alignment of type "int". The
40 enum { Alignment = enumerator in enum:llvm::AlignOf::__anon8487
43 enum { Alignment_GreaterEqual_2Bytes = Alignment >= 2 ? 1 : 0 };
44 enum { Alignment_GreaterEqual_4Bytes = Alignment >= 4 ? 1 : 0 };
45 enum { Alignment_GreaterEqual_8Bytes = Alignment >= 8 ? 1 : 0 };
46 enum { Alignment_GreaterEqual_16Bytes = Alignment >= 16 ? 1 : 0 };
48 enum { Alignment_LessEqual_2Bytes = Alignment <= 2 ? 1 : 0 };
49 enum { Alignment_LessEqual_4Bytes = Alignment <= 4 ? 1 : 0 };
50 enum { Alignment_LessEqual_8Bytes = Alignment <= 8 ? 1 : 0 };
51 enum { Alignment_LessEqual_16Bytes = Alignment <
[all...]
H A DAllocator.h36 void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); }
123 /// AlignPtr - Align Ptr to Alignment bytes, rounding up. Alignment should
126 static char *AlignPtr(char *Ptr, size_t Alignment);
150 void *Allocate(size_t Size, size_t Alignment);
156 return static_cast<T*>(Allocate(sizeof(T),AlignOf<T>::Alignment));
163 return static_cast<T*>(Allocate(Num * sizeof(T), AlignOf<T>::Alignment));
169 T *Allocate(size_t Num, size_t Alignment) { argument
171 size_t EltSize = (sizeof(T)+Alignment-1)&(-Alignment);
[all...]
/external/clang/test/CXX/temp/temp.spec/temp.inst/
H A Dp11.cpp9 void Allocate(unsigned Alignment
/external/llvm/tools/lli/
H A DRecordingMemoryManager.cpp19 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { argument
26 AllocatedCodeMem.push_back(Allocation(Block, Alignment));
31 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { argument
38 AllocatedDataMem.push_back(Allocation(Block, Alignment));
54 unsigned Alignment) {
62 uint8_t *RecordingMemoryManager::allocateSpace(intptr_t Size, unsigned Alignment) { argument
66 uint8_t *RecordingMemoryManager::allocateGlobal(uintptr_t Size, unsigned Alignment) { argument
53 allocateStub(const GlobalValue* F, unsigned StubSize, unsigned Alignment) argument
H A DRecordingMemoryManager.h46 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
49 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
63 unsigned Alignment);
66 uint8_t *allocateSpace(intptr_t Size, unsigned Alignment);
67 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment);
H A Dlli.cpp212 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
215 virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
251 unsigned Alignment) {
259 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) { argument
263 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { argument
285 unsigned Alignment,
287 if (!Alignment)
288 Alignment = 16;
289 uint8_t *Addr = (uint8_t*)calloc((Size + Alignment - 1)/Alignment, Alignmen
250 allocateStub(const GlobalValue* F, unsigned StubSize, unsigned Alignment) argument
284 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
294 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
[all...]
/external/llvm/lib/Support/
H A DAllocator.cpp32 /// AlignPtr - Align Ptr to Alignment bytes, rounding up. Alignment should
35 char *BumpPtrAllocator::AlignPtr(char *Ptr, size_t Alignment) { argument
36 assert(Alignment && (Alignment & (Alignment - 1)) == 0 &&
37 "Alignment is not a power of two!");
40 return (char*)(((uintptr_t)Ptr + Alignment - 1) &
41 ~(uintptr_t)(Alignment - 1));
89 void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) { argument
[all...]
/external/clang/lib/Sema/
H A DSemaAttr.cpp33 unsigned Alignment; member in struct:__anon167::PackStackEntry
42 /// Alignment - The current user specified alignment.
43 unsigned Alignment; member in class:__anon167::PragmaPackStack
50 PragmaPackStack() : Alignment(0) {}
52 void setAlignment(unsigned A) { Alignment = A; }
53 unsigned getAlignment() { return Alignment; }
58 PackStackEntry PSE = { Alignment, Name };
80 if (!Alignment)
84 Alignment = 0;
86 Alignment
194 Expr *Alignment = static_cast<Expr *>(alignment); local
[all...]
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp1 //===- llvm/unittest/Support/AlignOfTest.cpp - Alignment utility tests ----===//
77 [AlignOf<char>::Alignment > 0]
78 [AlignOf<short>::Alignment > 0]
79 [AlignOf<int>::Alignment > 0]
80 [AlignOf<long>::Alignment > 0]
81 [AlignOf<long long>::Alignment > 0]
82 [AlignOf<float>::Alignment > 0]
83 [AlignOf<double>::Alignment > 0]
84 [AlignOf<long double>::Alignment > 0]
85 [AlignOf<void *>::Alignment >
[all...]
/external/clang/test/CodeGenCXX/
H A Dalloca-align.cpp5 unsigned Alignment; member in struct:s0
/external/llvm/include/llvm/ExecutionEngine/
H A DJITMemoryManager.h104 unsigned Alignment) = 0;
120 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
128 virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
133 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) = 0;
136 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
H A DRuntimeDyld.h40 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
45 virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
/external/clang/lib/CodeGen/
H A DCGValue.h131 int64_t Alignment; member in class:clang::CodeGen::LValue
156 CharUnits Alignment,
160 this->Alignment = Alignment.getQuantity();
161 assert(this->Alignment == Alignment.getQuantity() &&
162 "Alignment exceeds allowed max!");
226 CharUnits getAlignment() const { return CharUnits::fromQuantity(Alignment); }
227 void setAlignment(CharUnits A) { Alignment = A.getQuantity(); }
271 QualType type, CharUnits Alignment) {
155 Initialize(QualType Type, Qualifiers Quals, CharUnits Alignment, llvm::MDNode *TBAAInfo = 0) argument
270 MakeVectorElt(llvm::Value *Vec, llvm::Value *Idx, QualType type, CharUnits Alignment) argument
280 MakeExtVectorElt(llvm::Value *Vec, llvm::Constant *Elts, QualType type, CharUnits Alignment) argument
296 MakeBitfield(llvm::Value *BaseValue, const CGBitFieldInfo &Info, QualType type, CharUnits Alignment) argument
321 unsigned short Alignment; member in class:clang::CodeGen::AggValueSlot
[all...]
/external/clang/include/clang/Frontend/
H A DLayoutOverrideSource.h51 uint64_t &Size, uint64_t &Alignment,
/external/clang/lib/AST/
H A DDeclGroup.cpp23 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
/external/llvm/include/llvm/
H A DAttributes.h115 DECLARE_LLVM_ATTRIBUTE(Alignment,31<<16) ///< Alignment of parameter (5 bits)
125 DECLARE_LLVM_ATTRIBUTE(StackAlignment,7<<26) ///< Alignment of stack for
186 assert(isPowerOf2_32(i) && "Alignment must be a power of two.");
187 assert(i <= 0x40000000 && "Alignment too large.");
193 Attributes Align = A & Attribute::Alignment;
207 assert(isPowerOf2_32(i) && "Alignment must be a power of two.");
208 assert(i <= 0x100 && "Alignment too large.");
239 if (Attrs & Attribute::Alignment)
241 (((Attrs & Attribute::Alignment)
254 unsigned Alignment = (EncodedAttrs & (0xffffull << 16)) >> 16; local
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dlanguage_switch_menu.h34 void set_menu_alignment(views::Menu2::Alignment alignment) {
75 views::Menu2::Alignment menu_alignment_;
/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);

Completed in 293 milliseconds

123456