reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/ObjectYAML/COFFEmitter.cpp
  222     if (S.Name == ".debug$S" && S.SectionData.binary_size() == 0) {
  234       if (S.SectionData.binary_size() == 0) {
  242       if (S.SectionData.binary_size() == 0)
  245       if (S.SectionData.binary_size() == 0)
  248       if (S.DebugH.hasValue() && S.SectionData.binary_size() == 0)
  252     if (S.SectionData.binary_size() > 0) {
  255       S.Header.SizeOfRawData = S.SectionData.binary_size();
  507     assert(S.Header.SizeOfRawData >= S.SectionData.binary_size());
  508     OS.write_zeros(S.Header.SizeOfRawData - S.SectionData.binary_size());
lib/ObjectYAML/COFFYAML.cpp
  583   if (Sec.SectionData.binary_size() == 0 &&
lib/ObjectYAML/ELFEmitter.cpp
  479     ContentSize = Content->binary_size();
 1003     SHeader.sh_size = Section.Content->binary_size();
 1067     if (NE.Desc.binary_size() == 0)
 1070       support::endian::write<uint32_t>(OS, NE.Desc.binary_size(),
 1085     if (NE.Desc.binary_size() != 0) {
lib/ObjectYAML/ELFYAML.cpp
 1212         (uint64_t)(*RawSection->Size) < RawSection->Content->binary_size())
 1222         (uint64_t)(*SS->Size) < SS->Content->binary_size())
 1244           (uint64_t)*HS->Size < HS->Content->binary_size())
 1266           (uint64_t)*Sec->Size < Sec->Content->binary_size())
 1294         (uint64_t)*NS->Size < NS->Content->binary_size())
lib/ObjectYAML/MachOEmitter.cpp
  306           ZeroFillBytes(OS, Sec.size - Content.binary_size());
lib/ObjectYAML/MachOYAML.cpp
  296   if (Section.content && Section.size < Section.content->binary_size())
lib/ObjectYAML/MinidumpEmitter.cpp
   47     return allocateCallback(Data.binary_size(), [Data](raw_ostream &OS) {
  117   return {support::ulittle32_t(Data.binary_size()),
  199       assert(Raw.Content.binary_size() <= Raw.Size);
  200       OS << std::string(Raw.Size - Raw.Content.binary_size(), '\0');
lib/ObjectYAML/MinidumpYAML.cpp
  292   IO.mapOptional("Size", Stream.Size, Stream.Content.binary_size());
  296   if (Stream.Size.value < Stream.Content.binary_size())
lib/ObjectYAML/WasmEmitter.cpp
  498     encodeULEB128(Segment.Content.binary_size(), OS);
lib/ObjectYAML/YAML.cpp
   54   if (binary_size() == 0)