HomeSort by relevance Sort by last modified time
    Searched refs:RelShdr (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
Elf64Convert.c 688 Elf_Shdr *RelShdr = GetShdrByIndex(Idx);
689 if ((RelShdr->sh_type != SHT_REL) && (RelShdr->sh_type != SHT_RELA)) {
703 if (RelShdr->sh_info == 0) {
711 SecShdr = GetShdrByIndex(RelShdr->sh_info);
712 SecOffset = mCoffSectionsOffset[RelShdr->sh_info];
717 if (RelShdr->sh_type == SHT_RELA && (*Filter)(SecShdr)) {
723 Elf_Shdr *SymtabShdr = GetShdrByIndex(RelShdr->sh_link);
729 for (RelIdx = 0; RelIdx < RelShdr->sh_size; RelIdx += (UINT32) RelShdr->sh_entsize) {
    [all...]
Elf32Convert.c 692 Elf_Shdr *RelShdr = GetShdrByIndex(Idx);
693 if ((RelShdr->sh_type != SHT_REL) && (RelShdr->sh_type != SHT_RELA)) {
701 SecShdr = GetShdrByIndex(RelShdr->sh_info);
702 SecOffset = mCoffSectionsOffset[RelShdr->sh_info];
707 if (RelShdr->sh_type == SHT_REL && (*Filter)(SecShdr)) {
713 Elf_Shdr *SymtabShdr = GetShdrByIndex(RelShdr->sh_link);
719 for (RelOffset = 0; RelOffset < RelShdr->sh_size; RelOffset += RelShdr->sh_entsize) {
723 Elf_Rel *Rel = (Elf_Rel *)((UINT8*)mEhdr + RelShdr->sh_offset + RelOffset);
    [all...]

Completed in 51 milliseconds