Searched refs:Alignment (Results 1 - 25 of 236) sorted by last modified time

12345678910

/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/
H A Dftraster.c325 } Alignment, *PAlignment; typedef in typeref:union:Alignment_
390 ( ( sizeof ( TProfile ) + sizeof ( Alignment ) - 1 ) / sizeof ( long ) )
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_pixel_read.c105 if (pack->Alignment != 1 || pack->SwapBytes || pack->LsbFirst) {
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_pixel_read.c105 if (pack->Alignment != 1 || pack->SwapBytes || pack->LsbFirst) {
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_pixel_read.c105 if (pack->Alignment != 1 || pack->SwapBytes || pack->LsbFirst) {
/external/mesa3d/src/mesa/main/
H A Dattrib.c1336 dst->Alignment = src->Alignment;
H A Dget.c436 { GL_PACK_ALIGNMENT, CONTEXT_INT(Pack.Alignment), NO_EXTRA },
456 { GL_UNPACK_ALIGNMENT, CONTEXT_INT(Unpack.Alignment), NO_EXTRA },
H A Dimage.c115 alignment = packing->Alignment;
306 remainder = bytesPerRow % packing->Alignment;
308 bytesPerRow += (packing->Alignment - remainder);
354 remainder = bytesPerRow % packing->Alignment;
356 bytesPerRow += (packing->Alignment - remainder);
H A Dmtypes.h1532 GLint Alignment; member in struct:gl_pixelstore_attrib
H A Dpixelstore.c128 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;
H A Dtexcompress_cpal.c189 saved_align = ctx->Unpack.Alignment;
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp1 //=== - llvm/unittest/Support/AlignOfTest.cpp - Alignment utility tests ----===//
92 [AlignOf<char>::Alignment > 0]
93 [AlignOf<short>::Alignment > 0]
94 [AlignOf<int>::Alignment > 0]
95 [AlignOf<long>::Alignment > 0]
96 [AlignOf<long long>::Alignment > 0]
97 [AlignOf<float>::Alignment > 0]
98 [AlignOf<double>::Alignment > 0]
99 [AlignOf<long double>::Alignment > 0]
100 [AlignOf<void *>::Alignment >
[all...]
H A DAllocatorTest.cpp126 void *Allocate(size_t Size, size_t /*Alignment*/) {
129 size_t Alignment = 4096; local
130 void *MemBase = malloc(Size + Alignment - 1 + sizeof(void*));
133 void *Slab = alignPtr((char *)MemBase + sizeof(void *), Alignment);
/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp107 uint32_t Alignment; local
109 rc = ReadBytes(&Alignment, 4);
116 RT->allocateSpace(AllocSize, Alignment, Addr);
/external/llvm/tools/lli/
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;
189 unsigned Alignment) {
197 uint8_t *RemoteMemoryManager::allocateSpace(intptr_t Size, unsigned Alignment) { argument
188 allocateStub(const GlobalValue* F, unsigned StubSize, unsigned Alignment) argument
201 allocateGlobal(uintptr_t Size, unsigned Alignment) argument
[all...]
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,
106 unsigned Alignment) override;
109 uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) override;
110 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) override;
H A DRemoteTarget.cpp31 bool RemoteTarget::allocateSpace(size_t Size, unsigned Alignment, argument
37 if ((uintptr_t)Mem.base() % Alignment) {
H A DRemoteTarget.h42 /// @param Alignment Required minimum alignment for allocated space.
48 unsigned 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);
H A DRemoteTargetExternal.h44 /// @param Alignment Required minimum alignment for allocated space.
49 bool allocateSpace(size_t Size, unsigned Alignment,
114 bool SendAllocateSpace(uint32_t Alignment, uint32_t Size);
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp141 uint32_t Alignment; member in struct:__anon26414::MachOSection
166 Section.Alignment = Sect.align;
178 Section.Alignment = Sect.align;
241 W.printNumber("Alignment", MOSection.Alignment);
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp90 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
93 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
112 unsigned Alignment,
121 unsigned Alignment,
111 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
120 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
/external/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp60 Sec.Alignment = 1 << (((Characteristics >> 20) & 0xf) - 1);
/external/llvm/tools/yaml2obj/
H A Dyaml2coff.cpp62 Sec.Header.Characteristics |= (Log2_32(Sec.Alignment) + 1) << 20;
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp118 unsigned Alignment) override {
120 return Base->allocateStub(F, StubSize, Alignment);
140 uintptr_t Size, unsigned Alignment, unsigned SectionID,
143 Size, Alignment, SectionID, SectionName, IsReadOnly);
146 uintptr_t Size, unsigned Alignment, unsigned SectionID,
149 Size, Alignment, SectionID, SectionName);
152 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) { argument
153 return Base->allocateSpace(Size, Alignment);
155 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { argument
156 return Base->allocateGlobal(Size, Alignment);
139 allocateDataSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
145 allocateCodeSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
[all...]

Completed in 214 milliseconds

12345678910