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

References

tools/lldb/source/Utility/Scalar.cpp
 2419     if (byte_size <= sizeof(uint64_t)) {
 2424       else if (!UIntValueIsValidForSize(uval64, byte_size))
 2428             uval64, static_cast<uint64_t>(byte_size));
 2430         m_type = Scalar::GetValueTypeForUnsignedIntegerWithByteSize(byte_size);
 2444               static_cast<uint64_t>(byte_size));
 2451           static_cast<uint64_t>(byte_size));
 2457     if (byte_size <= sizeof(int64_t)) {
 2462       else if (!SIntValueIsValidForSize(sval64, byte_size))
 2466             sval64, static_cast<uint64_t>(byte_size));
 2468         m_type = Scalar::GetValueTypeForSignedIntegerWithByteSize(byte_size);
 2482               static_cast<uint64_t>(byte_size));
 2489           static_cast<uint64_t>(byte_size));
 2498     if (byte_size == sizeof(float)) {
 2505     } else if (byte_size == sizeof(double)) {
 2512     } else if (byte_size == sizeof(long double)) {
 2524                                      static_cast<uint64_t>(byte_size));