Searched refs:gap (Results 1 - 4 of 4) sorted by relevance

/art/runtime/base/
H A Dhex_dump.cc56 size_t gap = offset & 0x0f; local
71 size_t count = std::min(byte_count, 16 - gap);
73 // CHECK_LE(count + gap, 16U);
75 if (gap) {
77 hex += gap * 3;
78 asc += gap;
82 for (i = gap ; i < count + gap; i++) {
103 gap = 0;
/art/runtime/mirror/
H A Dclass-inl.h749 uint32_t gap = 8 - (size & 0x7); local
750 size += gap; // will be padded
752 while (gap >= sizeof(uint32_t) && num_32bit_static_fields != 0) {
754 gap -= sizeof(uint32_t);
757 while (gap >= sizeof(uint16_t) && num_16bit_static_fields != 0) {
759 gap -= sizeof(uint16_t);
762 while (gap >= sizeof(uint8_t) && num_8bit_static_fields != 0) {
764 gap -= sizeof(uint8_t);
/art/runtime/
H A Dmem_map.cc640 // Found a gap.
665 // "~0x11dP" means a gap of 0x11d pages,
691 size_t gap = local
693 CHECK_ALIGNED(gap, kPageSize);
694 os << "~0x" << std::hex << (gap / kPageSize) << "P";
H A Dclass_linker.cc233 uint32_t size; // The gap size of 1, 2, or 4 bytes.
240 // Sort by gap size, largest first. Secondary sort by starting offset.
265 DCHECK_LE(current_offset, gap_end) << "Overran gap";
295 FieldGap gap = gaps->top(); local
297 DCHECK_ALIGNED(gap.start_offset, n);
298 field->SetOffset(MemberOffset(gap.start_offset));
299 if (gap.size > n) {
300 AddFieldGap(gap.start_offset + n, gap.start_offset + gap
[all...]

Completed in 103 milliseconds