HomeSort by: relevance | last modified time | path
    Searched refs:OutputSection (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/elftosb/dist/common/
OutputSection.h 2 * File: OutputSection.h
21 class OutputSection
24 OutputSection() : m_id(0), m_options(0) {}
25 OutputSection(uint32_t identifier) : m_id(identifier), m_options(0) {}
26 virtual ~OutputSection() {}
48 class OperationSequenceSection : public OutputSection
51 OperationSequenceSection() : OutputSection() {}
52 OperationSequenceSection(uint32_t identifier) : OutputSection(identifier) {}
63 class BinaryDataSection : public OutputSection, public Blob
66 BinaryDataSection() : OutputSection(), Blob() {
    [all...]
  /src/external/bsd/elftosb/dist/elftosb2/
BootImageGenerator.h 10 #include "OutputSection.h"
23 * After creating an instance of a subclass the user adds OutputSection objects
44 void addOutputSection(OutputSection * section) { m_sections.push_back(section); }
54 typedef std::vector<OutputSection*> section_vector_t;
EncoreBootImageGenerator.h 42 void processSectionOptions(EncoreBootImage::Section * imageSection, OutputSection * modelSection);
ConversionController.h 23 #include "OutputSection.h"
98 OutputSection * convertDataSection(DataSectionContentsASTNode * dataSection, uint32_t sectionID, OptionDictionary * optionsDict);
132 typedef std::vector<OutputSection*> section_vector_t; //!< List of output sections.
EncoreBootImageGenerator.cpp 28 OutputSection * section = *it;
79 void EncoreBootImageGenerator::processSectionOptions(EncoreBootImage::Section * imageSection, OutputSection * modelSection)
ConversionController.cpp 444 OutputSection * outputSection = NULL;
470 outputSection = opSection;
474 outputSection = convertDataSection(dataSection, sectionID, optionsDict);
481 if (outputSection)
483 m_outputSections.push_back(outputSection);
507 OutputSection * ConversionController::convertDataSection(DataSectionContentsASTNode * dataSection, uint32_t sectionID, OptionDictionary * optionsDict)
  /src/external/bsd/elftosb/lib/
Makefile 26 OutputSection.cpp \
  /src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/
ELFObjHandler.cpp 76 template <class ELFT> struct OutputSection {
89 struct ContentSection : public OutputSection<ELFT> {
201 std::vector<OutputSection<ELFT> *> Sections = {&DynSym, &DynStr, &DynTab,
203 const OutputSection<ELFT> *LastSection = Sections.back();
206 for (OutputSection<ELFT> *Sec : Sections) {
238 for (OutputSection<ELFT> *Sec : Sections) {
329 uint64_t shdrOffset(const OutputSection<ELFT> &Sec) const {
333 void writeShdr(uint8_t *Data, const OutputSection<ELFT> &Sec) const {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 2323 MCSection *OutputSection =
2326 OutStreamer->SwitchSection(OutputSection);

Completed in 56 milliseconds