11 references to DUINT_BASE
System.Data (11)
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (11)
104
private const double DUINT_BASE2 =
DUINT_BASE
*
DUINT_BASE
; // 2**64
105
private const double DUINT_BASE3 = DUINT_BASE2 *
DUINT_BASE
; // 2**96
695
dVal = Math.Floor (dInt /
DUINT_BASE
);
696
m_data1 = (uint)(dInt - dVal *
DUINT_BASE
);
700
dVal = Math.Floor (dInt /
DUINT_BASE
);
701
m_data2 = (uint)(dInt - dVal *
DUINT_BASE
);
706
dVal = Math.Floor (dInt /
DUINT_BASE
);
707
m_data3 = (uint)(dInt - dVal *
DUINT_BASE
);
712
dVal = Math.Floor (dInt /
DUINT_BASE
);
713
m_data4 = (uint) (dInt - dVal *
DUINT_BASE
);