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

Declarations

tools/lldb/include/lldb/Utility/DataExtractor.h
  431   double GetDouble(lldb::offset_t *offset_ptr) const;

References

tools/lldb/source/API/SBData.cpp
  144     value = m_opaque_sp->GetDouble(&offset);
tools/lldb/source/Core/DumpDataExtractor.cpp
  499         double d64_1 = DE.GetDouble(&offset);
  500         double d64_2 = DE.GetDouble(&offset);
  605           ss << DE.GetDouble(&offset);
  662         llvm::APFloat ap_float(DE.GetDouble(&offset));
tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
 2376                 value.GetScalar() = data.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
 2348                 value.GetScalar() = data.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
  441           value_long_dbl = data.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
  933           value.GetScalar() = (double)return_ext.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
  856             value.GetScalar() = (double)f0_data.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
  587                 value.GetScalar() = (double)data.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
  649       value_sp->GetScalar() = (float)de.GetDouble(&offset);
  653       value_sp->GetScalar() = de.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
  568                 value.GetScalar() = (double)data.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
  621                 value.GetScalar() = (double)data.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.cpp
 1456                 value.GetScalar() = (double)data.GetDouble(&offset);
tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
  514       value.SetDouble(regdata.GetDouble(&offset));
tools/lldb/source/Utility/RegisterValue.cpp
  263       SetDouble(src.GetDouble(&src_offset));
tools/lldb/source/Utility/Scalar.cpp
 2652       operator=(data.GetDouble(&offset));