Searched refs:padding (Results 1 – 13 of 13) sorted by relevance
/art/tools/ahat/etc/ |
D | style.css | 34 padding-left: 4px; 35 padding-right: 4px; 39 padding-left: 8px; 40 padding-right: 8px;
|
/art/compiler/ |
D | exception_test.cc | 99 size_t padding = RoundUp(offset, alignment) - offset; in SetUp() local 101 CHECK_GE(fake_header_code_and_maps_.capacity(), fake_header_code_and_maps_.size() + padding); in SetUp() 102 fake_header_code_and_maps_.insert(fake_header_code_and_maps_.begin(), padding, 0); in SetUp() 103 const void* code_ptr = reinterpret_cast<const uint8_t*>(unaligned_code_ptr) + padding; in SetUp()
|
D | common_compiler_test.cc | 89 size_t padding = compiled_method->AlignCode(offset) - offset; in MakeExecutable() local 91 CHECK_GE(chunk->capacity(), chunk->size() + padding); in MakeExecutable() 92 chunk->insert(chunk->begin(), padding, 0); in MakeExecutable() 93 const void* code_ptr = reinterpret_cast<const uint8_t*>(unaligned_code_ptr) + padding; in MakeExecutable()
|
/art/runtime/arch/mips64/ |
D | fault_handler_mips64.cc | 87 uintptr_t* padding = reinterpret_cast<uintptr_t*>(sc->sc_regs[mips64::SP]) + /* ArtMethod* */ 1; in Action() local 88 *padding = reinterpret_cast<uintptr_t>(info->si_addr); in Action()
|
D | quick_entrypoints_mips64.S | 250 # 1x8 bytes padding + Method* 869 # Retrieve the fault address from the padding where the signal handler stores it. 1425 sd $a2, 16($sp) # padding slot at offset 24 (padding can be any slot in the 64B)
|
/art/runtime/arch/mips/ |
D | fault_handler_mips.cc | 85 uintptr_t* padding = reinterpret_cast<uintptr_t*>(sc->sc_regs[mips::SP]) + /* ArtMethod* */ 1; in Action() local 86 *padding = reinterpret_cast<uintptr_t>(info->si_addr); in Action()
|
D | quick_entrypoints_mips.S | 81 # 1 word for holding Method* plus 12 bytes padding to keep contents of SP 439 # 3 words padding and 1 word for holding Method* 806 # Retrieve the fault address from the padding where the signal handler stores it. 1485 sw $a2, 8($sp) # padding slot at offset 12 (padding can be any slot in the 32B)
|
/art/tools/checker/common/ |
D | logger.py | 79 padding = ' ' * (longestName - len(var)) 81 Logger.log(padding, Logger.Level.Error, newLine=False, out=sys.stderr)
|
/art/compiler/jni/quick/mips/ |
D | calling_convention_mips.cc | 212 size_t padding = 0; in MipsJniCallingConvention() local 256 padding += 4; in MipsJniCallingConvention() 279 padding_ = padding; in MipsJniCallingConvention()
|
/art/runtime/base/ |
D | arena_allocator.h | 316 uintptr_t padding = variable 319 if (UNLIKELY(padding + bytes > static_cast<size_t>(end_ - ptr_))) { 323 ptr_ += padding;
|
D | arena_allocator.cc | 436 uintptr_t padding = in AllocWithMemoryToolAlign16() local 440 if (UNLIKELY(padding + rounded_bytes > static_cast<size_t>(end_ - ptr_))) { in AllocWithMemoryToolAlign16() 444 ptr_ += padding; // Leave padding inaccessible. in AllocWithMemoryToolAlign16()
|
/art/test/978-virtual-interface/smali/ |
D | Iface.smali | 17 # // Methods are sorted in alphabetical order in dex file. We need 10 padding
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 136 sub sp, #8 @ 2 words of space, alignment padding and Method* 190 sub sp, #8 @ 2 words of space, alignment padding and Method* 865 sub sp, #8 @ push padding 877 add sp, #8 @ pop padding
|