3 writes to m_value
System.Data.Common (3)
System\Data\SQLTypes\SQLInt64.cs (3)
34m_value = 0; 39m_value = value; 576m_value = XmlConvert.ToInt64(reader.ReadElementString());
43 references to m_value
System.Data.Common (43)
System\Data\SQLTypes\SQLInt64.cs (43)
55return m_value; 75return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null!); 89return x.IsNull ? Null : new SqlInt64(-x.m_value); 94return x.IsNull ? Null : new SqlInt64(~x.m_value); 105long lResult = x.m_value + y.m_value; 106if (SameSignLong(x.m_value, y.m_value) && !SameSignLong(x.m_value, lResult)) 117long lResult = x.m_value - y.m_value; 118if (!SameSignLong(x.m_value, y.m_value) && SameSignLong(y.m_value, lResult)) 131long lOp1 = x.m_value; 132long lOp2 = y.m_value; 192if (y.m_value != 0) 194if ((x.m_value == long.MinValue) && (y.m_value == -1)) 197return new SqlInt64(x.m_value / y.m_value); 208if (y.m_value != 0) 210if ((x.m_value == long.MinValue) && (y.m_value == -1)) 213return new SqlInt64(x.m_value % y.m_value); 222return (x.IsNull || y.IsNull) ? Null : new SqlInt64(x.m_value & y.m_value); 227return (x.IsNull || y.IsNull) ? Null : new SqlInt64(x.m_value | y.m_value); 232return (x.IsNull || y.IsNull) ? Null : new SqlInt64(x.m_value ^ y.m_value); 346return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 356return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 361return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 366return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 371return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 589writer.WriteString(XmlConvert.ToString(m_value));