Searched refs:rYear (Results 1 – 5 of 5) sorted by relevance
/aoo42x/main/tools/source/datetime/ |
H A D | tdate.cxx | 99 sal_uInt16& rDay, sal_uInt16& rMonth, sal_uInt16& rYear ) in DaysToDate() argument 108 rYear = (sal_uInt16)((nTempDays / 365) - i); in DaysToDate() 109 nTempDays -= ((sal_uIntPtr)rYear-1) * 365; in DaysToDate() 110 nTempDays -= ((rYear-1) / 4) - ((rYear-1) / 100) + ((rYear-1) / 400); in DaysToDate() 121 if ( (nTempDays != 366) || !ImpIsLeapYear( rYear ) ) in DaysToDate() 132 while ( (sal_uIntPtr)nTempDays > DaysInMonth( rMonth, rYear ) ) in DaysToDate() 134 nTempDays -= DaysInMonth( rMonth, rYear ); in DaysToDate()
|
/aoo42x/main/connectivity/source/commontools/ |
H A D | dbconversion.cxx | 227 …id implBuildFromRelative( sal_Int32 nDays, sal_uInt16& rDay, sal_uInt16& rMonth, sal_uInt16& rYear) in implBuildFromRelative() argument 236 rYear = (sal_uInt16)((nTempDays / 365) - i); in implBuildFromRelative() 237 nTempDays -= (rYear-1) * 365; in implBuildFromRelative() 238 nTempDays -= ((rYear-1) / 4) - ((rYear-1) / 100) + ((rYear-1) / 400); in implBuildFromRelative() 249 if ( (nTempDays != 366) || !implIsLeapYear( rYear ) ) in implBuildFromRelative() 260 while ( nTempDays > implDaysInMonth( rMonth, rYear ) ) in implBuildFromRelative() 262 nTempDays -= implDaysInMonth( rMonth, rYear ); in implBuildFromRelative()
|
/aoo42x/main/scaddins/source/datefunc/ |
H A D | datefunc.cxx | 619 sal_uInt16& rDay, sal_uInt16& rMonth, sal_uInt16& rYear ) in DaysToDate() argument 632 rYear = (sal_uInt16)((nTempDays / 365) - i); in DaysToDate() 633 nTempDays -= ((sal_Int32) rYear -1) * 365; in DaysToDate() 634 nTempDays -= (( rYear -1) / 4) - (( rYear -1) / 100) + ((rYear -1) / 400); in DaysToDate() 645 if ( (nTempDays != 366) || !IsLeapYear( rYear ) ) in DaysToDate() 656 while ( (sal_Int32)nTempDays > DaysInMonth( rMonth, rYear ) ) in DaysToDate() 658 nTempDays -= DaysInMonth( rMonth, rYear ); in DaysToDate()
|
/aoo42x/main/scaddins/source/analysis/ |
H A D | analysishelper.cxx | 196 void DaysToDate( sal_Int32 nDays, sal_uInt16& rDay, sal_uInt16& rMonth, sal_uInt16& rYear ) in DaysToDate() argument 209 rYear = (sal_uInt16)((nTempDays / 365) - i); in DaysToDate() 210 nTempDays -= ((sal_Int32) rYear -1) * 365; in DaysToDate() 211 nTempDays -= (( rYear -1) / 4) - (( rYear -1) / 100) + ((rYear -1) / 400); in DaysToDate() 222 if ( (nTempDays != 366) || !IsLeapYear( rYear ) ) in DaysToDate() 233 while ( (sal_Int32)nTempDays > DaysInMonth( rMonth, rYear ) ) in DaysToDate() 235 nTempDays -= DaysInMonth( rMonth, rYear ); in DaysToDate()
|
H A D | analysishelper.hxx | 65 void DaysToDate( sal_Int32 nDays, sal_uInt16& rDay, sal_uInt16& rMonth, sal_uInt16& rYear ) thro…
|
Completed in 127 milliseconds