31 references to m_value
System.Private.CoreLib (31)
src\libraries\System.Private.CoreLib\src\System\Int64.cs (31)
73if (m_value < i) return -1; 74if (m_value > i) return 1; 85if (m_value < value) return -1; 86if (m_value > value) return 1; 96return m_value == ((long)obj).m_value; 102return m_value == obj; 108return unchecked((int)((long)m_value)) ^ (int)(m_value >> 32); 113return Number.Int64ToDecStr(m_value); 118return Number.FormatInt64(m_value, null, provider); 123return Number.FormatInt64(m_value, format, null); 128return Number.FormatInt64(m_value, format, provider); 133return Number.TryFormatInt64(m_value, format, provider, destination, out charsWritten); 139return Number.TryFormatInt64(m_value, format, provider, utf8Destination, out bytesWritten); 199return Convert.ToBoolean(m_value); 204return Convert.ToChar(m_value); 209return Convert.ToSByte(m_value); 214return Convert.ToByte(m_value); 219return Convert.ToInt16(m_value); 224return Convert.ToUInt16(m_value); 229return Convert.ToInt32(m_value); 234return Convert.ToUInt32(m_value); 239return m_value; 244return Convert.ToUInt64(m_value); 249return Convert.ToSingle(m_value); 254return Convert.ToDouble(m_value); 259return Convert.ToDecimal(m_value); 486long value = m_value; 504if (BinaryPrimitives.TryWriteInt64BigEndian(destination, m_value)) 517if (BinaryPrimitives.TryWriteInt64LittleEndian(destination, m_value))