Lines Matching refs:sal_Int32

60 inline sal_Int32 lclIsLeapYear( sal_Int32 nYear )  in lclIsLeapYear()
65 void lclSkipYearBlock( sal_Int32& ornDays, sal_uInt16& ornYear, sal_Int32 nDaysInBlock, sal_Int32 n… in lclSkipYearBlock()
67 sal_Int32 nBlocks = ::std::min< sal_Int32 >( ornDays / nDaysInBlock, nMaxBlocks ); in lclSkipYearBlock()
74 sal_Int32 lclGetDays( const Date& rDate ) in lclGetDays()
77sal_Int32 nDays = rDate.Year * 365 + ((rDate.Year + 3) / 4) - ((rDate.Year + 99) / 100) + ((rDate.… in lclGetDays()
83 … static const sal_Int32 spnCumDays[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 }; in lclGetDays()
151 sal_Int32 nDigitWidth = 0; in finalizeImport()
157 sal_Int32 nSpaceWidth = scaleToMm100( xFont->getCharWidth( ' ' ), UNIT_REFDEVX ); in finalizeImport()
178 sal_Int32 UnitConverter::scaleToMm100( double fValue, Unit eUnit ) const in scaleToMm100()
180 return static_cast< sal_Int32 >( fValue * getCoefficient( eUnit ) + 0.5 ); in scaleToMm100()
183 double UnitConverter::scaleFromMm100( sal_Int32 nMm100, Unit eUnit ) const in scaleFromMm100()
190sal_Int32 nDays = lclGetDays( Date( rDateTime.Day, rDateTime.Month, rDateTime.Year ) ) - mnNullDat… in calcSerialFromDateTime()
203 sal_Int32 nDays = getLimitedValue< sal_Int32, double >( fDays + mnNullDate, 0, 3652424 ); in calcDateTimeFromSerial()
212 static const sal_Int32 spnDaysInMonth[] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; in calcDateTimeFromSerial()
214 const sal_Int32* pnDaysInMonth = spnDaysInMonth; in calcDateTimeFromSerial()
219 sal_Int32 nTime = getLimitedValue< sal_Int32, double >( fTime * 86400, 0, 86399 ); in calcDateTimeFromSerial()