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