Searched refs:seconds (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/bionic/
H A Dsleep.c31 unsigned int sleep(unsigned int seconds) argument
35 /* seconds is unsigned, while t.tv_sec is signed
37 * support for it by only sleeping 2 billion seconds
39 if ((int)seconds < 0)
40 seconds = 0x7fffffff;
42 t.tv_sec = seconds;
H A Dtime64.c205 Time64_T seconds = 0; local
241 seconds = days * 60 * 60 * 24;
243 seconds += date->tm_hour * 60 * 60;
244 seconds += date->tm_min * 60;
245 seconds += date->tm_sec;
247 return(seconds);
253 /* Don't forget leap seconds */
468 Time64_T seconds = 0; local
474 seconds += cycles * seconds_in_gregorian_cycle;
479 seconds
[all...]
/bionic/libc/kernel/common/linux/netfilter_ipv4/
H A Dipt_recent.h35 u_int32_t seconds; member in struct:ipt_recent_info
/bionic/tests/
H A Dbenchmark_main.cpp148 double seconds = static_cast<double>(gBenchmarkTotalTimeNs)/1e9; local
149 snprintf(throughput, sizeof(throughput), " %8.2f MiB/s", mib_processed/seconds);
/bionic/libc/tzcode/
H A Dlocaltime.c144 long tt_gmtoff; /* UTC offset in seconds */
733 ** Given a pointer into a time zone string, extract a number of seconds,
737 ** of seconds.
765 /* `SECSPERMIN' allows for leap seconds. */
1313 register time_t seconds; local
1318 seconds = sp->ats[0] - t;
1319 else seconds = t - sp->ats[sp->timecnt - 1];
1320 --seconds;
1321 tcycles = seconds / YEARSPERREPEAT / AVGSECSPERYEAR;
1326 seconds
1577 register long seconds; local
[all...]
/bionic/libc/netbsd/resolv/
H A Dres_send.c1048 int resplen, seconds, n, s; local
1120 seconds = get_timeout(statp, ns);
1122 timeout = evConsTime((long)seconds, 0L);
/bionic/libc/kernel/common/linux/
H A Dvideodev2.h400 __u8 seconds; member in struct:v4l2_timecode

Completed in 201 milliseconds