Searched refs:dtb_size (Results 1 – 6 of 6) sorted by relevance
/system/tools/mkbootimg/ |
D | unpack_bootimg.py | 152 if self.dtb_size > 0: 232 info.dtb_size = unpack('I', boot_img.read(4))[0] 235 info.dtb_size = 0 268 if info.dtb_size > 0: 276 image_info_list.append((dtb_offset, info.dtb_size, 'dtb')) 356 if self.dtb_size > 0: 393 info.dtb_size = unpack('I', boot_img.read(4))[0] 402 num_boot_dtb_pages = get_number_of_pages(info.dtb_size, page_size) 455 if info.dtb_size > 0: 456 image_info_list.append((dtb_offset, info.dtb_size, 'dtb'))
|
/system/tools/mkbootimg/include/bootimg/ |
D | bootimg.h | 200 uint32_t dtb_size; /* size in bytes for DTB image */ member 307 uint32_t dtb_size; /* size in bytes for DTB image */ member
|
/system/tools/mkbootimg/rust/ |
D | bootimg_priv.rs | 214 pub dtb_size: u32, field 232 unsafe { ::core::ptr::addr_of!((*ptr).dtb_size) as usize - ptr as usize }, in bindgen_test_layout_boot_img_hdr_v2() 234 concat!("Offset of field: ", stringify!(boot_img_hdr_v2), "::", stringify!(dtb_size)) in bindgen_test_layout_boot_img_hdr_v2() 340 pub dtb_size: u32, field 444 unsafe { ::core::ptr::addr_of!((*ptr).dtb_size) as usize - ptr as usize }, in bindgen_test_layout_vendor_boot_img_hdr_v3() 450 stringify!(dtb_size) in bindgen_test_layout_vendor_boot_img_hdr_v3()
|
/system/core/fastboot/ |
D | vendor_boot_img_utils_test.cpp | 294 EXPECT_EQ(hdr->dtb_size, env->dtb->size()); in TEST_P() 298 auto q = round_up(hdr->dtb_size, hdr->page_size); in TEST_P() 382 EXPECT_EQ(hdr->dtb_size, env->dtb->size()); in TEST_P() 387 auto q = round_up(hdr->dtb_size, hdr->page_size); in TEST_P()
|
D | bootimg_utils.cpp | 120 hdr->dtb_size = dtb.size(); in mkbootimg()
|
D | vendor_boot_img_utils.cpp | 220 const uint32_t q = round_up(hdr->dtb_size, hdr->page_size); in replace_default_vendor_ramdisk() 314 const uint32_t q = round_up(hdr->dtb_size, hdr->page_size); in replace_vendor_ramdisk_fragment()
|