OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bss_sect_hdr
(Results
1 - 3
of
3
) sorted by null
/frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocator.cpp
238
LDSection*
bss_sect_hdr
= NULL;
local
241
bss_sect_hdr
= &file_format->getTBSS();
243
bss_sect_hdr
= &file_format->getBSS();
246
assert(NULL !=
bss_sect_hdr
);
248
if (
bss_sect_hdr
->hasSectionData())
249
bss_section =
bss_sect_hdr
->getSectionData();
251
bss_section = IRBuilder::CreateSectionData(*
bss_sect_hdr
);
262
bss_sect_hdr
->setSize(
bss_sect_hdr
->size() + size);
[
all
...]
/frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp
99
LDSection*
bss_sect_hdr
= NULL;
local
102
bss_sect_hdr
= &file_format->getTBSS();
104
bss_sect_hdr
= &file_format->getBSS();
108
if (
bss_sect_hdr
->hasSectionData())
109
bss_data =
bss_sect_hdr
->getSectionData();
111
bss_data = IRBuilder::CreateSectionData(*
bss_sect_hdr
);
122
bss_sect_hdr
->setSize(
bss_sect_hdr
->size() + size);
[
all
...]
/frameworks/compile/mclinker/lib/Target/X86/
X86Relocator.cpp
107
LDSection*
bss_sect_hdr
= NULL;
local
110
bss_sect_hdr
= &file_format->getTBSS();
112
bss_sect_hdr
= &file_format->getBSS();
115
assert(NULL !=
bss_sect_hdr
);
117
if (
bss_sect_hdr
->hasSectionData())
118
bss_section =
bss_sect_hdr
->getSectionData();
120
bss_section = IRBuilder::CreateSectionData(*
bss_sect_hdr
);
131
bss_sect_hdr
->setSize(
bss_sect_hdr
->size() + size);
[
all
...]
Completed in 68 milliseconds