11 references to s_DUINT_BASE
System.Data.Common (11)
System\Data\SQLTypes\SQLDecimal.cs (11)
66
private const double s_DUINT_BASE2 =
s_DUINT_BASE
*
s_DUINT_BASE
; // 2**64
67
private const double s_DUINT_BASE3 = s_DUINT_BASE2 *
s_DUINT_BASE
; // 2**96
687
dVal = Math.Floor(dInt /
s_DUINT_BASE
);
688
_data1 = (uint)(dInt - dVal *
s_DUINT_BASE
);
693
dVal = Math.Floor(dInt /
s_DUINT_BASE
);
694
_data2 = (uint)(dInt - dVal *
s_DUINT_BASE
);
700
dVal = Math.Floor(dInt /
s_DUINT_BASE
);
701
_data3 = (uint)(dInt - dVal *
s_DUINT_BASE
);
707
dVal = Math.Floor(dInt /
s_DUINT_BASE
);
708
_data4 = (uint)(dInt - dVal *
s_DUINT_BASE
);