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

References

tools/lldb/source/Utility/DataExtractor.cpp
  987   for (offset = start_offset, end_offset = offset + length, count = 0;
  987   for (offset = start_offset, end_offset = offset + length, count = 0;
  988        ValidOffset(offset) && offset < end_offset; ++count) {
  988        ValidOffset(offset) && offset < end_offset; ++count) {
  998                     static_cast<uint64_t>(base_addr + (offset - start_offset)));
 1003       sstr.Printf(format ? format : " %2.2x", GetU8(&offset));
 1006       char ch = GetU8(&offset);
 1010       sstr.Printf(format ? format : " %4.4x", GetU16(&offset));
 1013       sstr.Printf(format ? format : " %8.8x", GetU32(&offset));
 1016       sstr.Printf(format ? format : " %16.16" PRIx64, GetU64(&offset));
 1019       sstr.Printf(format ? format : " 0x%" PRIx64, GetAddress(&offset));
 1022       sstr.Printf(format ? format : " 0x%" PRIx64, GetULEB128(&offset));
 1025       sstr.Printf(format ? format : " %" PRId64, GetSLEB128(&offset));
 1033   return offset; // Return the offset at which we ended up