Searched defs: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/
H A Dmem_map.cc661 // Found a gap.
686 // "~0x11dP" means a gap of 0x11d pages,
712 size_t gap = local
714 CHECK(IsAligned<kPageSize>(gap));
715 os << "~0x" << std::hex << (gap / kPageSize) << "P";
H A Dclass_linker.cc189 uint32_t size; // The gap size of 1, 2, or 4 bytes.
196 // Sort by gap size, largest first. Secondary sort by starting offset.
219 DCHECK_LE(current_offset, gap_end) << "Overran gap";
249 FieldGap gap = gaps->top(); local
251 DCHECK(IsAligned<n>(gap.start_offset));
252 field->SetOffset(MemberOffset(gap.start_offset));
253 if (gap.size > n) {
254 AddFieldGap(gap.start_offset + n, gap.start_offset + gap
[all...]
/art/runtime/mirror/
H A Dclass-inl.h640 uint32_t gap = 8 - (size & 0x7); local
641 size += gap; // will be padded
643 while (gap >= sizeof(uint32_t) && num_32bit_static_fields != 0) {
645 gap -= sizeof(uint32_t);
648 while (gap >= sizeof(uint16_t) && num_16bit_static_fields != 0) {
650 gap -= sizeof(uint16_t);
653 while (gap >= sizeof(uint8_t) && num_8bit_static_fields != 0) {
655 gap -= sizeof(uint8_t);

Completed in 65 milliseconds