Searched refs:secs (Results 1 - 25 of 80) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os_brew/
H A Dos_yield.c18 __os_yield(env, secs, usecs)
20 u_long secs, usecs; /* Seconds and microseconds. */
25 COMPQUIET(secs, 0);
30 ++secs;
38 MSLEEP(secs * MS_PER_SEC + (usecs / US_PER_MS) + 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os_windows/
H A Dos_yield.c18 __os_yield(env, secs, usecs)
20 u_long secs, usecs; /* Seconds and microseconds. */
26 ++secs;
34 Sleep(secs * MS_PER_SEC + (usecs / US_PER_MS) + 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os_vxworks/
H A Dos_vx_yield.c18 __os_yield(env, secs, usecs)
20 u_long secs, usecs; /* Seconds and microseconds. */
28 ++secs;
42 secs * ticks_per_second + (usecs * ticks_per_second) / US_PER_SEC;
43 if (ticks_delay == 0 && (secs != 0 || usecs != 0))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os/
H A Dos_yield.c27 __os_yield(env, secs, usecs)
29 u_long secs, usecs; /* Seconds and microseconds. */
36 ++secs;
39 (void)DB_GLOBAL(j_yield)(secs, usecs);
48 if (secs != 0 || usecs != 0)
49 __os_sleep(env, secs, usecs);
71 __os_sleep(env, secs, usecs)
73 u_long secs, usecs; /* Seconds and microseconds. */
82 t.tv_sec = (long)secs;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/scsi/
H A Dscsicam.h17 unsigned int *cyls, unsigned int *hds, unsigned int *secs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/watchdog/
H A Domap_wdt.h58 #define TIMER_MARGIN_DEFAULT 60 /* 60 secs */
62 #define GET_WLDR_VAL(secs) (0xffffffff - ((secs) * (32768/(1<<PTV))) + 1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/e2p/
H A Dls.c45 static const char *interval_string(unsigned int secs) argument
52 if (secs == 0)
55 if (secs >= MONTH_INT) {
56 num = secs / MONTH_INT;
57 secs -= num*MONTH_INT;
60 if (secs >= WEEK_INT) {
61 num = secs / WEEK_INT;
62 secs -= num*WEEK_INT;
67 if (secs >= DAY_INT) {
68 num = secs / DAY_IN
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/boards/dreamcast/
H A Drtc.c53 * @secs: contains the time_t to set
57 int aica_rtc_settimeofday(const time_t secs) argument
60 unsigned long adj = secs + TWENTY_YEARS;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/rtc/
H A Drtc-ep93xx.c46 static int ep93xx_rtc_set_mmss(struct device *dev, unsigned long secs) argument
48 __raw_writel(secs + 1, EP93XX_RTC_LOAD);
55 unsigned long secs; local
57 err = rtc_tm_to_time(tm, &secs);
61 return ep93xx_rtc_set_mmss(dev, secs);
H A Drtc-ds1672.c65 dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, "
73 static int ds1672_set_mmss(struct i2c_client *client, unsigned long secs) argument
79 buf[1] = secs & 0x000000FF;
80 buf[2] = (secs & 0x0000FF00) >> 8;
81 buf[3] = (secs & 0x00FF0000) >> 16;
82 buf[4] = (secs & 0xFF000000) >> 24;
96 unsigned long secs; local
99 "%s: secs=%d, mins=%d, hours=%d, "
105 rtc_tm_to_time(tm, &secs);
107 return ds1672_set_mmss(client, secs);
120 ds1672_rtc_set_mmss(struct device *dev, unsigned long secs) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dcutils.c67 struct tm *brktimegm(time_t secs, struct tm *tm) argument
72 days = secs / 86400;
73 secs %= 86400;
74 tm->tm_hour = secs / 3600;
75 tm->tm_min = (secs % 3600) / 60;
76 tm->tm_sec = secs % 60;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/db_deadlock/
H A Ddb_deadlock.c48 u_long secs, usecs; local
63 secs = usecs = 0;
121 NULL, progname, optarg, 0, LONG_MAX, &secs))
123 if (secs == 0 && usecs == 0)
195 /* Make a pass every "secs" secs and "usecs" usecs. */
196 if (secs == 0 && usecs == 0)
198 __os_yield(dbenv->env, secs, usecs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/db_deadlock/
H A Ddb_deadlock.c34 u_long secs, usecs; local
49 secs = usecs = 0;
106 NULL, progname, optarg, 0, LONG_MAX, &secs))
108 if (secs == 0 && usecs == 0)
180 /* Make a pass every "secs" secs and "usecs" usecs. */
181 if (secs == 0 && usecs == 0)
183 __os_yield(dbenv->env, secs, usecs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-parisc/
H A Drtc.h101 u_int32_t secs; local
103 secs = mktime(wtime->tm_year + 1900, wtime->tm_mon + 1, wtime->tm_mday,
106 if(pdc_tod_set(secs, 0) < 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/netconf/
H A Dmain.c136 if (fw->match.secs[0] || fw->match.secs[1]) {
141 if (fw->match.secs[0] < (24 * 60 * 60) && fw->match.days[1] < (24 * 60 * 60))
143 fw->match.secs[0] / (60 * 60), (fw->match.secs[0] / 60) % 60, fw->match.secs[0] % 60,
144 fw->match.secs[1] / (60 * 60), (fw->match.secs[1] / 60) % 60, fw->match.secs[1] % 60);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Dtime.c94 void idle_sleep(int secs) argument
98 ts.tv_sec = secs;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dscsicam.c25 unsigned int *secs);
103 * capacity,unsigned int *cyls, unsigned int *hds, unsigned int *secs);
106 * table, storing the results in *cyls, *hds, and *secs
113 unsigned int *cyls, unsigned int *hds, unsigned int *secs)
169 *secs = end_sector;
185 * unsigned int *hds, unsigned int *secs);
189 * the results in *cyls, *hds, and *secs.
218 unsigned int *secs)
243 *secs = (unsigned int) sectors;
112 scsi_partsize(unsigned char *buf, unsigned long capacity, unsigned int *cyls, unsigned int *hds, unsigned int *secs) argument
217 setsize(unsigned long capacity, unsigned int *cyls, unsigned int *hds, unsigned int *secs) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dktime.h76 * @secs: seconds to set
81 static inline ktime_t ktime_set(const long secs, const unsigned long nsecs) argument
84 if (unlikely(secs >= KTIME_SEC_MAX))
87 return (ktime_t) { .tv64 = (s64)secs * NSEC_PER_SEC + (s64)nsecs };
144 static inline ktime_t ktime_set(const long secs, const unsigned long nsecs) argument
146 return (ktime_t) { .tv = { .sec = secs, .nsec = nsecs } };
H A Drtc.h127 int (*set_mmss)(struct device *, unsigned long secs);
180 extern int rtc_set_mmss(struct rtc_device *rtc, unsigned long secs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/fat/
H A Dmisc.c147 int month, year, secs; local
155 secs = (time & 31)*2+60*((time >> 5) & 63)+(time >> 11)*3600+86400*
159 secs += sys_tz.tz_minuteswest*60;
160 return secs;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/radvd/
H A Dtimer.c51 dlog(LOG_DEBUG, 4, "calling alarm: %ld secs, %ld usecs",
67 set_timer(struct timer_lst *tm, double secs) argument
74 dlog(LOG_DEBUG, 3, "setting timer: %.2f secs", secs);
76 firein.tv_sec = (long)secs;
77 firein.tv_usec = (long)((secs - (double)firein.tv_sec) * 1000000);
79 dlog(LOG_DEBUG, 5, "setting timer: %ld secs %ld usecs", firein.tv_sec, firein.tv_usec);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/affs/
H A Damigaffs.c369 secs_to_datestamp(time_t secs, struct affs_date *ds) argument
374 secs -= sys_tz.tz_minuteswest * 60 + ((8 * 365 + 2) * 24 * 60 * 60);
375 if (secs < 0)
376 secs = 0;
377 days = secs / 86400;
378 secs -= days * 86400;
379 minute = secs / 60;
380 secs -= minute * 60;
384 ds->ticks = cpu_to_be32(secs * 50);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/udhcpd/
H A Dpacket.h18 u_int16_t secs; member in struct:dhcpMessage
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/ip/
H A Dipmonitor.c67 time_t secs = ((__u32*)NLMSG_DATA(n))[0]; local
69 tstr = asctime(localtime(&secs));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/boards/sh03/
H A Drtc.c121 int sh03_rtc_settimeofday(const time_t secs) argument
123 unsigned long nowtime = secs;

Completed in 160 milliseconds

1234