3 writes to m_value
System.Data.Common (3)
System\Data\SQLTypes\SQLInt32.cs (3)
33m_value = 0; 38m_value = value; 517m_value = XmlConvert.ToInt32(reader.ReadElementString());
43 references to m_value
System.Data.Common (43)
System\Data\SQLTypes\SQLInt32.cs (43)
56return m_value; 74return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null!); 89return x.IsNull ? Null : new SqlInt32(-x.m_value); 94return x.IsNull ? Null : new SqlInt32(~x.m_value); 105int iResult = x.m_value + y.m_value; 106if (SameSignInt(x.m_value, y.m_value) && !SameSignInt(x.m_value, iResult)) 117int iResult = x.m_value - y.m_value; 118if (!SameSignInt(x.m_value, y.m_value) && SameSignInt(y.m_value, iResult)) 129long lResult = x.m_value * (long)y.m_value; 142if (y.m_value != 0) 144if ((x.m_value == s_iIntMin) && (y.m_value == -1)) 147return new SqlInt32(x.m_value / y.m_value); 158if (y.m_value != 0) 160if ((x.m_value == s_iIntMin) && (y.m_value == -1)) 163return new SqlInt32(x.m_value % y.m_value); 172return (x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value & y.m_value); 177return (x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value | y.m_value); 182return (x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value ^ y.m_value); 287return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 297return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 302return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 307return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 312return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 530writer.WriteString(XmlConvert.ToString(m_value));