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

  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocator.cpp 411 LDSection* bss_sect_hdr = NULL; local
414 bss_sect_hdr = &file_format->getTBSS();
416 bss_sect_hdr = &file_format->getBSS();
419 assert(bss_sect_hdr != NULL);
421 if (bss_sect_hdr->hasSectionData())
422 bss_section = bss_sect_hdr->getSectionData();
424 bss_section = IRBuilder::CreateSectionData(*bss_sect_hdr);
433 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64Relocator.cpp 109 LDSection* bss_sect_hdr = NULL; local
112 bss_sect_hdr = &file_format->getTBSS();
114 bss_sect_hdr = &file_format->getBSS();
118 if (bss_sect_hdr->hasSectionData())
119 bss_data = bss_sect_hdr->getSectionData();
121 bss_data = IRBuilder::CreateSectionData(*bss_sect_hdr);
130 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
  /frameworks/compile/mclinker/lib/Target/X86/
X86Relocator.cpp 206 LDSection* bss_sect_hdr = NULL; local
209 bss_sect_hdr = &file_format->getTBSS();
211 bss_sect_hdr = &file_format->getBSS();
214 assert(bss_sect_hdr != NULL);
216 if (bss_sect_hdr->hasSectionData())
217 bss_section = bss_sect_hdr->getSectionData();
219 bss_section = IRBuilder::CreateSectionData(*bss_sect_hdr);
228 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 340 LDSection* bss_sect_hdr = NULL; local
343 bss_sect_hdr = &file_format->getTBSS();
345 bss_sect_hdr = &file_format->getBSS();
349 if (bss_sect_hdr->hasSectionData())
350 bss_data = bss_sect_hdr->getSectionData();
352 bss_data = IRBuilder::CreateSectionData(*bss_sect_hdr);
361 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
    [all...]

Completed in 292 milliseconds