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