Searched refs:secs (Results 76 - 100 of 441) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/x86/boot/compressed/
H A Drelocs.c28 static struct section *secs; variable in typeref:struct:section
169 sec_strtab = secs[ehdr.e_shstrndx].strtab;
172 name = sec_strtab + secs[shndx].shdr.sh_name;
191 name = sec_name(secs[sym->st_shndx].shdr.sh_name);
278 secs = calloc(ehdr.e_shnum, sizeof(struct section));
279 if (!secs) {
288 struct section *sec = &secs[i];
303 sec->link = &secs[sec->shdr.sh_link];
312 struct section *sec = &secs[i];
337 struct section *sec = &secs[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/x86/boot/compressed/
H A Drelocs.c28 static struct section *secs; variable in typeref:struct:section
169 sec_strtab = secs[ehdr.e_shstrndx].strtab;
172 name = sec_strtab + secs[shndx].shdr.sh_name;
191 name = sec_name(secs[sym->st_shndx].shdr.sh_name);
278 secs = calloc(ehdr.e_shnum, sizeof(struct section));
279 if (!secs) {
288 struct section *sec = &secs[i];
303 sec->link = &secs[sec->shdr.sh_link];
312 struct section *sec = &secs[i];
337 struct section *sec = &secs[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openvpn/src/openvpn/
H A Ddhcp.h63 uint16_t secs; /* seconds since request process began, set by client */ member in struct:dhcp
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openvpn/src/openvpn/
H A Ddhcp.h63 uint16_t secs; /* seconds since request process began, set by client */ member in struct:dhcp
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.pm34 my ($secs, $nsecs) = @_;
36 return $secs * $NSECS_PER_SEC + $nsecs;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.pm34 my ($secs, $nsecs) = @_;
36 return $secs * $NSECS_PER_SEC + $nsecs;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/affs/
H A Damigaffs.c375 secs_to_datestamp(time_t secs, struct affs_date *ds) argument
380 secs -= sys_tz.tz_minuteswest * 60 + ((8 * 365 + 2) * 24 * 60 * 60);
381 if (secs < 0)
382 secs = 0;
383 days = secs / 86400;
384 secs -= days * 86400;
385 minute = secs / 60;
386 secs -= minute * 60;
390 ds->ticks = cpu_to_be32(secs * 50);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/affs/
H A Damigaffs.c375 secs_to_datestamp(time_t secs, struct affs_date *ds) argument
380 secs -= sys_tz.tz_minuteswest * 60 + ((8 * 365 + 2) * 24 * 60 * 60);
381 if (secs < 0)
382 secs = 0;
383 days = secs / 86400;
384 secs -= days * 86400;
385 minute = secs / 60;
386 secs -= minute * 60;
390 ds->ticks = cpu_to_be32(secs * 50);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/networking/
H A Dbrctl.c49 double secs; local
52 secs = /*bb_*/strtod(time_str, &endptr);
55 if (sscanf(time_str, "%lf", &secs) != 1)
58 tv->tv_sec = secs;
59 tv->tv_usec = 1000000 * (secs - tv->tv_sec);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/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 };
151 static inline ktime_t ktime_set(const long secs, const unsigned long nsecs) argument
153 return (ktime_t) { .tv = { .sec = secs, .nsec = nsecs } };
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/rtc/
H A Drtc-ab3100.c46 static int ab3100_rtc_set_mmss(struct device *dev, unsigned long secs) argument
51 u64 fat_time = (u64) secs * AB3100_RTC_CLOCK_RATE * 2;
150 unsigned long secs; local
155 rtc_tm_to_time(&alarm->time, &secs);
156 fat_time = (u64) secs * AB3100_RTC_CLOCK_RATE * 2;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/rtc/
H A Drtc-ab3100.c46 static int ab3100_rtc_set_mmss(struct device *dev, unsigned long secs) argument
51 u64 fat_time = (u64) secs * AB3100_RTC_CLOCK_RATE * 2;
150 unsigned long secs; local
155 rtc_tm_to_time(&alarm->time, &secs);
156 fat_time = (u64) secs * AB3100_RTC_CLOCK_RATE * 2;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/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 };
151 static inline ktime_t ktime_set(const long secs, const unsigned long nsecs) argument
153 return (ktime_t) { .tv = { .sec = secs, .nsec = nsecs } };
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/networking/
H A Dbrctl.c49 double secs; local
52 secs = /*bb_*/strtod(time_str, &endptr);
55 if (sscanf(time_str, "%lf", &secs) != 1)
58 tv->tv_sec = secs;
59 tv->tv_usec = 1000000 * (secs - tv->tv_sec);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/networking/
H A Dbrctl.c49 double secs; local
52 secs = /*bb_*/strtod(time_str, &endptr);
55 if (sscanf(time_str, "%lf", &secs) != 1)
58 tv->tv_sec = secs;
59 tv->tv_usec = 1000000 * (secs - tv->tv_sec);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/lib/util/
H A Dtime.h164 _PUBLIC_ struct timeval timeval_set(uint32_t secs, uint32_t usecs);
170 uint32_t secs, uint32_t usecs);
179 return a timeval secs/usecs into the future
181 _PUBLIC_ struct timeval timeval_current_ofs(uint32_t secs, uint32_t usecs);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/lib/util/
H A Dtime.h164 _PUBLIC_ struct timeval timeval_set(uint32_t secs, uint32_t usecs);
170 uint32_t secs, uint32_t usecs);
179 return a timeval secs/usecs into the future
181 _PUBLIC_ struct timeval timeval_current_ofs(uint32_t secs, uint32_t usecs);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/lib/util/
H A Dtime.h164 _PUBLIC_ struct timeval timeval_set(uint32_t secs, uint32_t usecs);
170 uint32_t secs, uint32_t usecs);
179 return a timeval secs/usecs into the future
181 _PUBLIC_ struct timeval timeval_current_ofs(uint32_t secs, uint32_t usecs);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/
H A Dffprobe.c61 double secs; local
63 secs = val;
64 mins = (int)secs / 60;
65 secs = secs - mins * 60;
68 snprintf(buf, buf_size, "%d:%02d:%09.6f", hours, mins, secs);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/
H A Dffprobe.c61 double secs; local
63 secs = val;
64 mins = (int)secs / 60;
65 secs = secs - mins * 60;
68 snprintf(buf, buf_size, "%d:%02d:%09.6f", hours, mins, secs);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/
H A Dffprobe.c61 double secs; local
63 secs = val;
64 mins = (int)secs / 60;
65 secs = secs - mins * 60;
68 snprintf(buf, buf_size, "%d:%02d:%09.6f", hours, mins, secs);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/www/
H A Ddetect_timezone.js42 var secs = parseInt(value);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/wpa_supplicant/src/utils/
H A Deloop.h181 * @secs: Number of seconds to the timeout
191 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/wpa_supplicant-0.7.3/src/utils/
H A Deloop.h175 * @secs: Number of seconds to the timeout
185 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavformat/
H A Dinternal.h45 struct tm *brktimegm(time_t secs, struct tm *tm);

Completed in 375 milliseconds

1234567891011>>