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

  /frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp 329 LDSection* bss_sect_hdr = NULL; local
332 bss_sect_hdr = &file_format->getTBSS();
334 bss_sect_hdr = &file_format->getBSS();
338 if (bss_sect_hdr->hasSectionData())
339 bss_data = bss_sect_hdr->getSectionData();
341 bss_data = IRBuilder::CreateSectionData(*bss_sect_hdr);
352 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86LDBackend.cpp 177 LDSection* bss_sect_hdr = NULL; local
180 bss_sect_hdr = &file_format->getTBSS();
182 bss_sect_hdr = &file_format->getBSS();
185 assert(NULL != bss_sect_hdr);
187 if (bss_sect_hdr->hasSectionData())
188 bss_section = bss_sect_hdr->getSectionData();
190 bss_section = IRBuilder::CreateSectionData(*bss_sect_hdr);
201 bss_sect_hdr->setSize(bss_sect_hdr->size() + size);
    [all...]

Completed in 73 milliseconds