Home
last modified time | relevance | path

Searched refs:reloc_size (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0140-util-mkimage-Refactor-section-setup-to-use-a-helper.patch90 + ALIGN_UP (layout.reloc_size, GRUB_PE32_FILE_ALIGNMENT);
93 - pe_size = ALIGN_UP (reloc_addr + layout.reloc_size,
95 - pe_img = xmalloc (reloc_addr + layout.reloc_size);
99 - memcpy ((char *) pe_img + reloc_addr, layout.reloc_section, layout.reloc_size);
179 - PE_OHDR (o32, o64, base_relocation_table.size) = grub_host_to_target32 (layout.reloc_size);
182 - reloc_section->virtual_size = grub_host_to_target32 (layout.reloc_size);
184 - reloc_section->raw_data_size = grub_host_to_target32 (layout.reloc_size);
197 + scn_size = pe_size - layout.reloc_size - raw_data;
205 + scn_size = layout.reloc_size;
H A D0135-util-mkimage-Use-grub_host_to_target32-instead-of-gr.patch100 - reloc_section->virtual_size = grub_cpu_to_le32 (layout.reloc_size);
102 - reloc_section->raw_data_size = grub_cpu_to_le32 (layout.reloc_size);
104 + reloc_section->virtual_size = grub_host_to_target32 (layout.reloc_size);
106 + reloc_section->raw_data_size = grub_host_to_target32 (layout.reloc_size);
H A D0138-util-mkimage-Reorder-PE-optional-header-fields-set-u.patch45 - PE_OHDR (o32, o64, base_relocation_table.size) = grub_host_to_target32 (layout.reloc_size);
67 + PE_OHDR (o32, o64, base_relocation_table.size) = grub_host_to_target32 (layout.reloc_size);
70 reloc_section->virtual_size = grub_host_to_target32 (layout.reloc_size);
H A D0141-util-mkimage-Add-an-option-to-import-SBAT-metadata-i.patch86 size_t reloc_size;
206 - ALIGN_UP (layout.reloc_size, GRUB_PE32_FILE_ALIGNMENT);
207 + ALIGN_UP (layout.reloc_size, GRUB_PE32_FILE_ALIGNMENT) + sbat_size;
237 - scn_size = pe_size - layout.reloc_size - raw_data;
238 + scn_size = pe_size - layout.reloc_size - sbat_size - raw_data;
259 scn_size = layout.reloc_size;
H A D0137-util-mkimage-Unify-more-of-the-PE32-and-PE32-header-.patch97 - o->base_relocation_table.size = grub_host_to_target32 (layout.reloc_size);
137 - o->base_relocation_table.size = grub_host_to_target32 (layout.reloc_size);
162 + PE_OHDR (o32, o64, base_relocation_table.size) = grub_host_to_target32 (layout.reloc_size);
/OK3568_Linux_fs/kernel/drivers/gpu/drm/etnaviv/
H A Detnaviv_cmd_parser.c150 unsigned int reloc_size) in etnaviv_cmd_validate_one() argument
158 state.num_relocs = reloc_size; in etnaviv_cmd_validate_one()
H A Detnaviv_drv.h83 struct drm_etnaviv_gem_submit_reloc *relocs, unsigned int reloc_size);