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