20 writes to m_bStatus
System.Data (20)
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (20)
481
m_bStatus
= 0;
493
m_bStatus
= x_bNotNull;
512
m_bStatus
|= ((sgnscl & 0x80000000) == 0x80000000)? x_bNegative:(byte)0;
539
m_bStatus
= x_bNotNull;
545
m_bStatus
|= x_bNegative;
565
m_bStatus
= x_bNotNull;
571
m_bStatus
|= x_bNegative;
616
m_bStatus
= x_bNotNull;
620
m_bStatus
|= x_bNegative;
657
m_bStatus
= x_bNotNull;
661
m_bStatus
|= x_bNegative;
677
m_bStatus
= x_bNotNull;
682
m_bStatus
|= x_bNegative;
795
m_bStatus
= x_bNotNull;
799
m_bStatus
|= x_bNegative;
836
m_bStatus
= (byte)(m_bStatus & x_bReverseSignMask);
841
m_bStatus
= (byte)(fPositive ? (m_bStatus & x_bReverseSignMask) : (m_bStatus | x_bNegative));
2931
m_bStatus
= (byte) (x_bNotNull | x_bPositive);
3261
m_bStatus
= (byte) (x_bReverseNullMask & m_bStatus);
3265
this.
m_bStatus
= dec.m_bStatus;
7 references to m_bStatus
System.Data (7)
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (7)
813
get { return(
m_bStatus
& x_bNullMask) == x_bIsNull;}
830
return(
m_bStatus
& x_bSignMask) == x_bPositive;
836
m_bStatus = (byte)(
m_bStatus
& x_bReverseSignMask);
841
m_bStatus = (byte)(fPositive ? (
m_bStatus
& x_bReverseSignMask) : (
m_bStatus
| x_bNegative));
3261
m_bStatus = (byte) (x_bReverseNullMask &
m_bStatus
);
3265
this.m_bStatus = dec.
m_bStatus
;