Searched refs:mon (Results 1 - 25 of 93) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/h8300/include/asm/
H A Dtarget_time.h3 extern void platform_gettod(unsigned int *year, unsigned int *mon, unsigned int *day,
H A Dtimer.h6 void h8300_gettod(unsigned int *year, unsigned int *mon, unsigned int *day,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/libncftp/
H A Du_getutc.c15 GetUTCOffset2(const int year, const int mon, const int mday, const int hour, const int min) argument
26 local_tm.tm_mon = mon - 1;
56 GetUTCOffset(const int mon, const int mday) argument
58 return (GetUTCOffset2(2000, mon, mday, 12, 0));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/include/asm/
H A Dmachdep_no.h13 extern void (*mach_gettod)(int *year, int *mon, int *day, int *hour,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68knommu/kernel/
H A Dtime.c62 unsigned int year, mon, day, hour, min, sec; local
65 mach_gettod(&year, &mon, &day, &hour, &min, &sec);
67 year = mon = day = hour = min = sec = 0;
72 return mktime(year, mon, day, hour, min, sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/h8300/kernel/
H A Dtime.c46 unsigned int year, mon, day, hour, min, sec; local
52 mon = day = 1;
55 h8300_gettod (&year, &mon, &day, &hour, &min, &sec);
59 ts->tv_sec = mktime(year, mon, day, hour, min, sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Dmc146818-time.h91 unsigned int year, mon, day, hour, min, sec; local
101 mon = CMOS_READ(RTC_MONTH);
110 mon = bcd2bin(mon);
116 return mktime(year, mon, day, hour, min, sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/frv/kernel/
H A Dtime.c101 unsigned int year, mon, day, hour, min, sec; local
103 extern void arch_gettod(int *year, int *mon, int *day, int *hour, int *min, int *sec);
109 mon = day = 1;
111 arch_gettod (&year, &mon, &day, &hour, &min, &sec);
115 ts->tv_sec = mktime(year, mon, day, hour, min, sec);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/logon/genlogon/
H A Dgenlogon.pl25 #($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
26 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
28 print LOG "$mon/$mday/$year $hour:$min:$sec - User $ARGV[0] logged into $ARGV[1]\n";
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/lockd/
H A DMakefile8 svcproc.o svcsubs.o mon.o xdr.o grace.o
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68knommu/platform/68328/
H A Dconfig.c26 void m68328_timer_gettod(int *year, int *mon, int *day, int *hour, int *min, int *sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/dec/
H A Dtime.c23 unsigned int year, mon, day, hour, min, sec, real_year; local
33 mon = CMOS_READ(RTC_MONTH);
50 mon = bcd2bin(mon);
56 ts->tv_sec = mktime(year, mon, day, hour, min, sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/kernel/
H A Dtime.c103 unsigned int year, mon, day, hour, min, sec; local
111 mon = CMOS_READ(RTC_MONTH);
118 mon = bcd2bin(mon);
124 return mktime(year, mon, day, hour, min, sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/bvme6000/
H A Drtc.c74 unsigned char mon, day, hrs, min, sec, leap_yr; local
86 mon = rtc_tm.tm_mon + 1; /* tm_mon starts at zero */
94 if ((mon > 12) || (mon < 1) || (day == 0))
97 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr)))
117 rtc->bcd_mth = bin2bcd(mon);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/asm-generic/
H A Drtc.h119 unsigned char mon, day, hrs, min, sec; local
127 mon = time->tm_mon + 1; /* tm_mon starts at zero */
148 if (!leap_yr && mon < 3) {
170 mon = bin2bcd(mon);
183 CMOS_WRITE(mon, RTC_MONTH);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/boards/mach-sh03/
H A Drtc.c42 unsigned int year, mon, day, hour, min, sec; local
51 mon = (__raw_readb(RTC_MON1) & 0xf) + (__raw_readb(RTC_MON10) & 0xf) * 10;
56 if (year == 0 || mon < 1 || mon > 12 || day > 31 || day < 1 ||
60 printk("year=%d, mon=%d, day=%d, hour=%d, min=%d, sec=%d\n",
61 year, mon, day, hour, min, sec);
77 return mktime(year, mon, day, hour, min, sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/mvme16x/
H A Drtc.c69 unsigned char mon, day, hrs, min, sec, leap_yr; local
81 mon = rtc_tm.tm_mon + 1; /* tm_mon starts at zero */
89 if ((mon > 12) || (day == 0))
92 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr)))
108 rtc->bcd_mth = bin2bcd(mon);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Ddatetime.cpp405 wxDateTime::Month mon,
413 ((year == JDN_0_YEAR) && (mon > JDN_0_MONTH)) ||
414 ((year == JDN_0_YEAR) && (mon == JDN_0_MONTH) && (day >= JDN_0_DAY)),
423 if ( mon >= wxDateTime::Mar )
425 month = mon - 2;
429 month = mon + 10;
539 wxDateTime::Month mon; local
540 for ( mon = wxDateTime::Jan; mon < wxDateTime::Inv_Month; wxNextMonth(mon) )
404 GetTruncatedJDN(wxDateTime::wxDateTime_t day, wxDateTime::Month mon, int year) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dds1302.c178 unsigned char mon, day, hrs, min, sec, leap_yr; local
188 mon = rtc_tm.tm_mon + 1; /* tm_mon starts at zero */
200 if ((mon > 12) || (day == 0))
203 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr)))
218 mon = bin2bcd(mon);
224 CMOS_WRITE(mon, RTC_MONTH);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/chrp/
H A Dtime.c127 unsigned int year, mon, day, hour, min, sec; local
134 mon = chrp_cmos_clock_read(RTC_MONTH);
143 mon = bcd2bin(mon);
152 tm->tm_mon = mon;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/maple/
H A Dtime.c87 int sec, min, hour, mon, mday, year; local
102 mon = tm->tm_mon;
110 mon = bin2bcd(mon);
117 maple_clock_write(mon, RTC_MONTH);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Drtc.c100 unsigned int status, year, mon, day, hour, min, sec, century = 0; local
115 mon = CMOS_READ(RTC_MONTH);
132 mon = bcd2bin(mon);
143 return mktime(year, mon, day, hour, min, sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/atari/
H A Dtime.c168 int sec=0, min=0, hour=0, day=0, mon=0, year=0, wday=0; local
183 mon = t->tm_mon + 1;
202 mon = bin2bcd(mon);
235 mon = RTC_READ( RTC_MONTH );
244 RTC_WRITE( RTC_MONTH, mon );
264 mon = bcd2bin(mon);
280 t->tm_mon = mon - 1;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68knommu/platform/68EZ328/
H A Dconfig.c28 void m68328_timer_gettod(int *year, int *mon, int *day, int *hour, int *min, int *sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m32r/kernel/
H A Dtime.c143 unsigned int epoch, year, mon, day, hour, min, sec; local
145 sec = min = hour = day = mon = year = 0;
149 mon = 4;
161 ts->tv_sec = mktime(year, mon, day, hour, min, sec);

Completed in 276 milliseconds

1234