tag | line | file | source code |
month | 170 | fs/msdos/misc.c | int month,year; |
month | 172 | fs/msdos/misc.c | month = ((date >> 5) & 15)-1; |
month | 175 | fs/msdos/misc.c | ((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 && |
month | 176 | fs/msdos/misc.c | month < 2 ? 1 : 0)+3653); |
month | 186 | fs/msdos/misc.c | int day,year,nl_day,month; |
month | 196 | fs/msdos/misc.c | month = 2; |
month | 200 | fs/msdos/misc.c | for (month = 0; month < 12; month++) |
month | 201 | fs/msdos/misc.c | if (day_n[month] > nl_day) break; |
month | 203 | fs/msdos/misc.c | *date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9); |
month | 26 | kernel/mktime.c | static int month[12] = { |
month | 49 | kernel/mktime.c | res += month[tm->tm_mon]; |