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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
PDBStringTableBuilder.cpp 192 BinaryStreamWriter SectionWriter;
194 std::tie(SectionWriter, Writer) = Writer.split(sizeof(PDBStringTableHeader));
195 if (auto EC = writeHeader(SectionWriter))
198 std::tie(SectionWriter, Writer) =
200 if (auto EC = writeStrings(SectionWriter))
203 std::tie(SectionWriter, Writer) = Writer.split(calculateHashTableSize());
204 if (auto EC = writeHashTable(SectionWriter))
207 std::tie(SectionWriter, Writer) = Writer.split(sizeof(uint32_t));
208 if (auto EC = writeEpilogue(SectionWriter))
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
Object.h 82 class SectionWriter : public SectionVisitor {
87 virtual ~SectionWriter(){};
99 explicit SectionWriter(Buffer &Buf) : Out(Buf) {}
102 template <class ELFT> class ELFSectionWriter : public SectionWriter {
116 explicit ELFSectionWriter(Buffer &Buf) : SectionWriter(Buf) {}
120 friend class SectionWriter; \
123 class BinarySectionWriter : public SectionWriter {
133 explicit BinarySectionWriter(Buffer &Buf) : SectionWriter(Buf) {}
Object.cpp 125 void SectionWriter::visit(const Section &Sec) {
134 void SectionWriter::visit(const OwnedDataSection &Sec) {
154 void SectionWriter::visit(const StringTableSection &Sec) {
445 void SectionWriter::visit(const DynamicRelocationSection &Sec) {
    [all...]

Completed in 270 milliseconds