reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1052 while (Index < End) { 1053 outs() << format("%8" PRIx64 ":", SectionAddr + Index); 1055 if (Index + 4 <= End) { 1056 dumpBytes(Bytes.slice(Index, 4), outs()); 1059 support::endian::read32(Bytes.data() + Index, Endian), 10); 1060 Index += 4; 1061 } else if (Index + 2 <= End) { 1062 dumpBytes(Bytes.slice(Index, 2), outs()); 1065 support::endian::read16(Bytes.data() + Index, Endian), 6); 1066 Index += 2; 1068 dumpBytes(Bytes.slice(Index, 1), outs()); 1070 ++Index; 1073 if (getMappingSymbolKind(MappingSymbols, Index) != 'd') 1076 return Index;