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

  /external/llvm/tools/yaml2obj/
yaml2coff.cpp 167 if (i->SectionDefinition)
310 if (i->SectionDefinition)
311 OS << binary_le(i->SectionDefinition->Length)
312 << binary_le(i->SectionDefinition->NumberOfRelocations)
313 << binary_le(i->SectionDefinition->NumberOfLinenumbers)
314 << binary_le(i->SectionDefinition->CheckSum)
315 << binary_le(i->SectionDefinition->Number)
316 << binary_le(i->SectionDefinition->Selection)
317 << zeros(i->SectionDefinition->unused);
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 367 coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection();
536 S.Symbol->Aux[0].Aux.SectionDefinition.Number = S.Number;
618 WriteLE32(i->Aux.SectionDefinition.Length);
619 WriteLE16(i->Aux.SectionDefinition.NumberOfRelocations);
620 WriteLE16(i->Aux.SectionDefinition.NumberOfLinenumbers);
621 WriteLE32(i->Aux.SectionDefinition.CheckSum);
622 WriteLE16(i->Aux.SectionDefinition.Number);
623 Write8(i->Aux.SectionDefinition.Selection);
624 WriteZeros(sizeof(i->Aux.SectionDefinition.unused));
871 if (Section->Symbol->Aux[0].Aux.SectionDefinition.Selection !
    [all...]
  /external/llvm/include/llvm/Object/
COFFYAML.h 66 Optional<COFF::AuxiliarySectionDefinition> SectionDefinition;
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 123 Sym->SectionDefinition = YAMLASD;
  /external/llvm/include/llvm/Support/
COFF.h 396 AuxiliarySectionDefinition SectionDefinition;
  /external/llvm/lib/Object/
COFFYAML.cpp 374 IO.mapOptional("SectionDefinition", S.SectionDefinition);

Completed in 645 milliseconds