Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DEncoreBootImageGenerator.cpp37 BinaryDataSection * dataSection = dynamic_cast<BinaryDataSection*>(section); in generate() local
38 if (dataSection) in generate()
40 processDataSection(dataSection, image); in generate()
289 …EncoreBootImage::DataSection * dataSection = new EncoreBootImage::DataSection(section->getIdentifi… in processDataSection() local
290 dataSection->setData(section->getData(), section->getLength()); in processDataSection()
293 processSectionOptions(dataSection, section); in processDataSection()
295 image->addSection(dataSection); in processDataSection()
H A DConversionController.cpp446 DataSectionContentsASTNode * dataSection; in processSections() local
472 else if (dataSection = dynamic_cast<DataSectionContentsASTNode*>(node)) in processSections()
474 outputSection = convertDataSection(dataSection, sectionID, optionsDict); in processSections()
507 OutputSection * ConversionController::convertDataSection(DataSectionContentsASTNode * dataSection, … in convertDataSection() argument
510 ASTNode * contents = dataSection->getContents(); in convertDataSection()
H A DConversionController.h98 …OutputSection * convertDataSection(DataSectionContentsASTNode * dataSection, uint32_t sectionID, O…
H A Delftosb_parser.y357 DataSectionContentsASTNode * dataSection = new DataSectionContentsASTNode($2);
358 dataSection->setLocation(@1, @3);
359 $$ = dataSection;
H A Delftosb_parser.tab.cpp1754 … DataSectionContentsASTNode * dataSection = new DataSectionContentsASTNode((yyvsp[-1].m_ast)); local
1755 dataSection->setLocation((yylsp[-2]), (yylsp[0]));
1756 (yyval.m_ast) = dataSection;
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/sections/
H A Dwin64.d79 void[] dataSection = findImageSection(".data"); in initSections()
80 debug(PRINTF) printf("found .data section: [%p,+%llx]\n", dataSection.ptr, in initSections()
81 cast(ulong)dataSection.length); in initSections()
89 _sections._gcRanges[0] = dataSection; in initSections()
102 void* addr = dataSection.ptr + off; in initSections()
/netbsd-src/external/bsd/elftosb/dist/sbtool/
H A DEncoreBootImageReader.cpp352 EncoreBootImage::DataSection * dataSection = new EncoreBootImage::DataSection(header.m_tag); in readSection() local
353 dataSection->setDataNoCopy(contents, contentLength); in readSection()
355 resultSection = dataSection; in readSection()