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

Declarations

tools/lldb/include/lldb/Utility/Scalar.h
  172   Scalar &operator=(double v);

References

tools/lldb/include/lldb/Utility/RegisterValue.h
   68     m_scalar = value;
  181     m_scalar = f;
  223     m_scalar = f;
tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
 2376                 value.GetScalar() = data.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-arc/ABISysV_arc.cpp
  414     scalar = *reinterpret_cast<double *>(&raw_value);
tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
 1666           value.GetScalar() = reg_value.GetAsDouble();
 1677           value.GetScalar() = *reinterpret_cast<double *>(&raw_value);
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
  608               value.GetScalar() = value_double;
tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
  887         value.GetScalar() = *((double *)(&raw_value));
  933           value.GetScalar() = (double)return_ext.GetDouble(&offset);
tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
  822           value.GetScalar() = *((double *)(&raw_value));
  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
  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/Symbol/CompilerType.cpp
  852             value = *((double *)&u32);
  856             value = *((double *)&u64);
tools/lldb/source/Utility/RegisterValue.cpp
  431       m_scalar = dbl_val;
tools/lldb/source/Utility/Scalar.cpp
 2652       operator=(data.GetDouble(&offset));