Searched refs:nowtime (Results 26 - 50 of 55) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/i2c/chips/
H A Dm41t00.c172 int nowtime = *(int *)arg; local
190 to_tm(nowtime, &tm);
230 m41t00_set_rtc_time(ulong nowtime) argument
232 new_time = nowtime;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68knommu/platform/68360/
H A Dconfig.c118 int BSP_set_clock_mmss (unsigned long nowtime) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ppc/
H A Dmachdep.h62 int (*set_rtc_time)(unsigned long nowtime);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/bvme6000/
H A Dconfig.c328 * Set the minutes and seconds from seconds value 'nowtime'. Fail if
334 int bvme6000_set_clock_mmss (unsigned long nowtime) argument
337 short real_seconds = nowtime % 60, real_minutes = (nowtime / 60) % 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/q40/
H A Dconfig.c281 * Set the minutes and seconds from seconds value 'nowtime'. Fail if
285 int q40_set_clock_mmss(unsigned long nowtime) argument
288 short real_seconds = nowtime % 60, real_minutes = (nowtime / 60) % 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/kernel/
H A Dtime.c520 static int set_rtc_mmss(unsigned long nowtime) argument
540 real_seconds = nowtime % 60;
541 real_minutes = nowtime / 60;
575 real_seconds = nowtime % 60;
576 real_minutes = nowtime / 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Drtas-proc.c328 unsigned long nowtime; local
329 int error = parse_number(buf, count, &nowtime);
333 power_on_time = nowtime; /* save the time */
335 to_tm(nowtime, &tm);
394 unsigned long nowtime; local
395 int error = parse_number(buf, count, &nowtime);
399 to_tm(nowtime, &tm);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/kernel/
H A Dtime.c76 * ms after the second nowtime has started, because when nowtime is written
82 static void set_rtc_mmss(unsigned long nowtime) argument
114 real_seconds = nowtime % 60;
115 real_minutes = nowtime / 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/kernel/
H A Dtime.c498 * called 500 ms after the second nowtime has started, because when
499 * nowtime is written into the registers of the CMOS clock, it will
509 set_rtc_mmss(unsigned long nowtime) argument
535 real_seconds = nowtime % 60;
536 real_minutes = nowtime / 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/frv/kernel/
H A Dtime.c49 static inline int set_rtc_mmss(unsigned long nowtime) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/platforms/
H A Dapus_setup.c96 int apus_set_rtc_time(unsigned long nowtime) argument
99 extern int m68k_set_rtc_time(unsigned long nowtime);
101 return m68k_set_rtc_time (nowtime);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/kernel/
H A Dtime.c218 static int set_rtc_time(unsigned long nowtime) argument
234 real_seconds = nowtime % 60;
235 real_minutes = nowtime / 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/blackfin/kernel/
H A Dtime.c187 static inline int set_rtc_mmss(unsigned long nowtime) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/mvme147/
H A Dconfig.c175 int mvme147_set_clock_mmss (unsigned long nowtime) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/syslib/
H A Dtodc_time.c360 todc_set_rtc_time(unsigned long nowtime) argument
366 to_tm(nowtime, &tm);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dtime.c1069 static int set_rtc_mmss(unsigned long nowtime) argument
1110 real_seconds = nowtime % 60;
1111 real_minutes = nowtime / 60;
1146 real_seconds = nowtime % 60;
1147 real_minutes = nowtime / 60;
1184 real_seconds = nowtime % 60;
1185 real_minutes = nowtime / 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Defi.c168 inline int efi_set_rtc_mmss(unsigned long nowtime) argument
180 real_seconds = nowtime % 60;
181 real_minutes = nowtime / 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/mac/
H A Dmisc.c731 int mac_set_clock_mmss (unsigned long nowtime) argument
736 now.tm_sec = nowtime % 60;
737 now.tm_min = (nowtime / 60) % 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v10/kernel/
H A Dtime.c29 extern int set_rtc_mmss(unsigned long nowtime);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/kernel/
H A Dtime.c43 extern int set_rtc_mmss(unsigned long nowtime);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m32r/kernel/
H A Dtime.c171 * called 500 ms after the second nowtime has started, because when
172 * nowtime is written into the registers of the CMOS clock, it will
179 static inline int set_rtc_mmss(unsigned long nowtime) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/apollo/
H A Dconfig.c238 int dn_dummy_set_clock_mmss(unsigned long nowtime) { argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/mvme16x/
H A Dconfig.c279 int mvme16x_set_clock_mmss (unsigned long nowtime) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/platforms/85xx/
H A Dtqm85xx.c263 extern int ds1337_set_rtc_time(unsigned long nowtime);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Defi.h303 extern int efi_set_rtc_mmss(unsigned long nowtime);

Completed in 290 milliseconds

123