Lines Matching defs:Contents

854     const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
858 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0';
860 DumpCstringChar(Contents[i]);
866 memcpy(&f, Contents + (lp - SectAddress), sizeof(float));
868 memcpy(&l, Contents + (lp - SectAddress), sizeof(uint32_t));
877 memcpy(&d, Contents + (lp - SectAddress), sizeof(double));
879 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
880 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
892 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
893 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
895 memcpy(&l2, Contents + (lp - SectAddress) + 2 * sizeof(uint32_t),
897 memcpy(&l3, Contents + (lp - SectAddress) + 3 * sizeof(uint32_t),
1036 outs() << "Contents of (" << SegName << "," << SectName
1106 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3186 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3190 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3196 memcpy(&p, Contents + i, size);
3237 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
3241 const char *Contents = reinterpret_cast<const char *>(BytesStr.data());
3247 memcpy(&p, Contents + i, size);
4916 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
4979 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5025 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5065 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
5105 outs() << "Contents of (" << SegName << "," << SectName << ") section\n";
6356 CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64)
6359 read<uint64_t>(Contents.data() + Offset);
6361 read<uint32_t>(Contents.data() + Offset);
6460 StringRef Contents;
6461 CompactUnwind.getContents(Contents);
6466 for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) {
6467 CompactUnwindEntry Entry(Contents.data(), Offset, Is64);
6491 outs() << "Contents of __compact_unwind section:\n";
6596 outs() << "Contents of __unwind_info section:\n";
6598 StringRef Contents;
6599 UnwindInfo.getContents(Contents);
6600 const char *Pos = Contents.data();
6643 Pos = Contents.data() + CommonEncodingsStart;
6660 Pos = Contents.data() + PersonalitiesStart;
6683 Pos = Contents.data() + IndicesStart;
6708 Pos = Contents.data() + IndexEntries[0].LSDAStart;
6741 Pos = Contents.data() + IndexEntries[i].SecondLevelPageStart;
6799 outs() << "Contents of __eh_frame section:\n";
6801 StringRef Contents;
6802 EHFrame.getContents(Contents);
6816 for (const char *Pos = Contents.data(), *End = Contents.end(); Pos != End; ) {
6932 uint64_t Offset = EntryStartPos - Contents.data();
6944 assert(CIEStart >= Contents.data() &&
6947 uint64_t CIEOffset = CIEStart - Contents.data();