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

/art/compiler/
H A Dimage_test.cc115 const auto& bitmap_section = image_header.GetImageSection(ImageHeader::kSectionImageBitmap); local
116 ASSERT_GE(bitmap_section.Offset(), sizeof(image_header));
117 ASSERT_NE(0U, bitmap_section.Size());
H A Dimage_writer.cc210 const ImageSection& bitmap_section = image_header->GetImageSection(ImageHeader::kSectionImageBitmap); local
211 CHECK_ALIGNED(bitmap_section.Offset(), kPageSize);
213 bitmap_section.Size(), bitmap_section.Offset())) {
219 CHECK_EQ(bitmap_section.End(), static_cast<size_t>(image_file->GetLength()));
998 auto* bitmap_section = &sections[ImageHeader::kSectionImageBitmap]; local
999 *bitmap_section = ImageSection(RoundUp(cur_pos, kPageSize), RoundUp(bitmap_bytes, kPageSize));
1000 cur_pos = bitmap_section->End();
/art/runtime/gc/space/
H A Dimage_space.cc702 const auto& bitmap_section = image_header.GetImageSection(ImageHeader::kSectionImageBitmap); local
703 auto end_of_bitmap = static_cast<size_t>(bitmap_section.End());
723 nullptr, bitmap_section.Size(), PROT_READ, MAP_PRIVATE, file->Fd(),
724 bitmap_section.Offset(), false, image_filename, error_msg));
735 accounting::ContinuousSpaceBitmap::ComputeHeapSize(bitmap_section.Size())));
/art/oatdump/
H A Doatdump.cc1557 const auto& bitmap_section = image_header_.GetImageSection(ImageHeader::kSectionImageBitmap); local
1565 stats_.alignment_bytes += bitmap_section.Offset() - image_header_.GetImageSize();
1566 stats_.bitmap_bytes += bitmap_section.Size();

Completed in 156 milliseconds