30 references to m_value
System.Private.CoreLib (30)
src\runtime\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); 191return Convert.ToBoolean(m_value); 196return Convert.ToChar(m_value); 201return Convert.ToSByte(m_value); 206return Convert.ToByte(m_value); 211return Convert.ToInt16(m_value); 216return Convert.ToUInt16(m_value); 221return Convert.ToInt32(m_value); 226return m_value; 231return Convert.ToInt64(m_value); 236return Convert.ToUInt64(m_value); 241return Convert.ToSingle(m_value); 246return Convert.ToDouble(m_value); 251return Convert.ToDecimal(m_value); 437int IBinaryInteger<uint>.GetShortestBitLength() => (sizeof(uint) * 8) - BitOperations.LeadingZeroCount(m_value); 445if (BinaryPrimitives.TryWriteUInt32BigEndian(destination, m_value)) 458if (BinaryPrimitives.TryWriteUInt32LittleEndian(destination, m_value))