33 references to m_value
System.Private.CoreLib (33)
src\libraries\System.Private.CoreLib\src\System\Int64.cs (33)
67if (m_value < i) return -1; 68if (m_value > i) return 1; 79if (m_value < value) return -1; 80if (m_value > value) return 1; 90return m_value == ((long)obj).m_value; 96return m_value == obj; 102return unchecked((int)((long)m_value)) ^ (int)(m_value >> 32); 107return Number.Int64ToDecStr(m_value); 112return Number.FormatInt64(m_value, null, provider); 117return Number.FormatInt64(m_value, format, null); 122return Number.FormatInt64(m_value, format, provider); 127return Number.TryFormatInt64(m_value, format, provider, destination, out charsWritten); 133return Number.TryFormatInt64(m_value, format, provider, utf8Destination, out bytesWritten); 193return Convert.ToBoolean(m_value); 198return Convert.ToChar(m_value); 203return Convert.ToSByte(m_value); 208return Convert.ToByte(m_value); 213return Convert.ToInt16(m_value); 218return Convert.ToUInt16(m_value); 223return Convert.ToInt32(m_value); 228return Convert.ToUInt32(m_value); 233return m_value; 238return Convert.ToUInt64(m_value); 243return Convert.ToSingle(m_value); 248return Convert.ToDouble(m_value); 253return Convert.ToDecimal(m_value); 480long value = m_value; 500long value = BitConverter.IsLittleEndian ? BinaryPrimitives.ReverseEndianness(m_value) : m_value; 518long value = BitConverter.IsLittleEndian ? m_value : BinaryPrimitives.ReverseEndianness(m_value);