Searched defs:alignment (Results 1 - 4 of 4) sorted by path

/art/compiler/
H A Delf_writer_mclinker.cc132 // MCLinker defaults MIPS section alignment to 0x10000, not
193 uint32_t alignment = kPageSize; local
200 alignment);
/art/compiler/llvm/
H A Dgbc_expander.cc1068 uint32_t alignment; local
1076 alignment = sizeof(int32_t);
1080 alignment = irb_.getSizeOfPtrEquivInt();
1086 irb_.getPtrEquivInt(art::mirror::Array::DataOffset(alignment).Int32Value());
2366 uint32_t alignment; local
2374 alignment = sizeof(int32_t);
2378 alignment = irb_.getSizeOfPtrEquivInt();
2384 irb_.getPtrEquivInt(art::mirror::Array::DataOffset(alignment).Int32Value());
/art/compiler/utils/x86/
H A Dassembler_x86.cc1302 void X86Assembler::Align(int alignment, int offset) { argument
1303 CHECK(IsPowerOfTwo(alignment));
1305 while (((offset + buffer_.GetPosition()) & (alignment-1)) != 0) {
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc1498 void X86_64Assembler::Align(int alignment, int offset) { argument
1499 CHECK(IsPowerOfTwo(alignment));
1501 while (((offset + buffer_.GetPosition()) & (alignment-1)) != 0) {

Completed in 369 milliseconds