30 references to m_value
System.Private.CoreLib (30)
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (30)
70if (m_value < i) return -1; 71if (m_value > i) return 1; 82if (m_value < value) return -1; 83if (m_value > value) return 1; 93return m_value == ((uint)obj).m_value; 99return m_value == obj; 105return (int)m_value; 111return Number.UInt32ToDecStr(m_value); 116return Number.UInt32ToDecStr(m_value); 121return Number.FormatUInt32(m_value, format, null); 126return Number.FormatUInt32(m_value, format, provider); 131return Number.TryFormatUInt32(m_value, format, provider, destination, out charsWritten); 137return Number.TryFormatUInt32(m_value, format, provider, utf8Destination, out bytesWritten); 197return Convert.ToBoolean(m_value); 202return Convert.ToChar(m_value); 207return Convert.ToSByte(m_value); 212return Convert.ToByte(m_value); 217return Convert.ToInt16(m_value); 222return Convert.ToUInt16(m_value); 227return Convert.ToInt32(m_value); 232return m_value; 237return Convert.ToInt64(m_value); 242return Convert.ToUInt64(m_value); 247return Convert.ToSingle(m_value); 252return Convert.ToDouble(m_value); 257return Convert.ToDecimal(m_value); 430int IBinaryInteger<uint>.GetShortestBitLength() => (sizeof(uint) * 8) - BitOperations.LeadingZeroCount(m_value); 438if (BinaryPrimitives.TryWriteUInt32BigEndian(destination, m_value)) 451if (BinaryPrimitives.TryWriteUInt32LittleEndian(destination, m_value))