HomeSort by relevance Sort by last modified time
    Searched full:secs (Results 1 - 25 of 412) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/kernel-headers/original/linux/netfilter/
xt_limit.h 10 u_int32_t avg; /* Average secs between packets * scale */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_limit.h 10 u_int32_t avg; /* Average secs between packets * scale */
xt_hashlimit.h 19 u_int32_t avg; /* Average secs between packets * scale */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_limit.h 14 u_int32_t avg; /* Average secs between packets * scale */
  /frameworks/base/include/utils/
Timers.h 36 static inline nsecs_t seconds_to_nanoseconds(nsecs_t secs)
38 return secs*1000000000;
41 static inline nsecs_t milliseconds_to_nanoseconds(nsecs_t secs)
43 return secs*1000000;
46 static inline nsecs_t microseconds_to_nanoseconds(nsecs_t secs)
48 return secs*1000;
51 static inline nsecs_t nanoseconds_to_seconds(nsecs_t secs)
53 return secs/1000000000;
56 static inline nsecs_t nanoseconds_to_milliseconds(nsecs_t secs)
58 return secs/1000000
    [all...]
  /external/srec/portable/src/
ptimestamp.c 31 timestamp->secs = 0;
39 timestamp->secs = now.time;
44 timestamp->secs = now.tv_sec;
55 return (a->secs - b->secs) * 1000 + a->msecs - b->msecs;
  /external/e2fsprogs/lib/e2p/
ls.c 54 static const char *interval_string(unsigned int secs)
61 if (secs == 0)
64 if (secs >= MONTH_INT) {
65 num = secs / MONTH_INT;
66 secs -= num*MONTH_INT;
69 if (secs >= WEEK_INT) {
70 num = secs / WEEK_INT;
71 secs -= num*WEEK_INT;
76 if (secs >= DAY_INT) {
77 num = secs / DAY_INT
    [all...]
  /external/iptables/include/linux/netfilter/
xt_limit.h 14 __u32 avg; /* Average secs between packets * scale */
xt_hashlimit.h 24 __u32 avg; /* Average secs between packets * scale */
48 __u32 avg; /* Average secs between packets * scale */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
llc.h 33 LLC_OPT_ACK_TMR_EXP, /* ack expire time (secs). */
34 LLC_OPT_P_TMR_EXP, /* pf cycle expire time (secs). */
35 LLC_OPT_REJ_TMR_EXP, /* rej sent expire time (secs). */
36 LLC_OPT_BUSY_TMR_EXP, /* busy state expire time (secs). */
  /system/extras/tests/bionic/libc/common/
test_clock.c 52 printf("At 10 secs clock=%lu, at 15 secs clock=%lu\n", ticks10, ticks15);
  /sdk/emulator/qtools/
profile_trace.cpp 107 double secs = 1.0 * total / kMHz; local
109 secs, total, kMHz / kMillion);
112 printf("Elapsed secs Elapsed cyc %% %% Function\n");
120 double secs = 1.0 * sym->elapsed / kMHz; local
125 secs, sym->elapsed, per, sum_per, ksym, sym->name);
  /bionic/libc/unistd/
alarm.c 43 alarm(secs)
44 unsigned int secs;
51 itp->it_value.tv_sec = secs;
  /external/chromium/chrome/common/
time_format_unittest.cc 60 TestTimeFormats(twohundred_millisecs, "0 secs");
61 TestTimeFormats(one_sec - twohundred_millisecs, "0 secs");
63 TestTimeFormats(five_secs + twohundred_millisecs, "5 secs");
  /external/srec/portable/include/
ptimestamp.h 36 * Time stamp structure with two fields: seconds and milliseconds. The secs
45 time_t secs; member in struct:PTimeStamp_t
55 * Sets the time stamp to represent current time. Sets both secs field and
  /bionic/libc/netbsd/nameser/
ns_ttl.c 57 int secs, mins, hours, days, weeks, x; local
60 secs = src % 60; src /= 60;
83 if (secs || !(weeks || days || hours || mins)) {
84 T(fmt1(secs, 'S', &dst, &dstlen));
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_hashlimit.h 19 u_int32_t avg; /* Average secs between packets * scale */
  /frameworks/base/include/media/stagefright/
MediaExtractor.h 48 CAN_SEEK_BACKWARD = 1, // the "seek 10secs back button"
49 CAN_SEEK_FORWARD = 2, // the "seek 10secs forward button"
  /external/e2fsprogs/debugfs/
lsdel.c 84 long secs = 0; local
90 "[secs]", 0))
94 secs = strtol(argv[1],&tmp,0);
135 (secs && ((unsigned) abs(now - secs) > inode.i_dtime)))
  /external/kernel-headers/original/linux/
ktime.h 70 * @secs: seconds to set
75 static inline ktime_t ktime_set(const long secs, const unsigned long nsecs)
78 if (unlikely(secs >= KTIME_SEC_MAX))
81 return (ktime_t) { .tv64 = (s64)secs * NSEC_PER_SEC + (s64)nsecs };
138 static inline ktime_t ktime_set(const long secs, const unsigned long nsecs)
140 return (ktime_t) { .tv = { .sec = secs, .nsec = nsecs } };
  /external/qemu/
blockdev.c 144 int cyls, heads, secs, translation; local
178 secs = qemu_opt_get_number(opts, "secs", 0);
221 if (cyls || heads || secs) {
230 if (secs < 1 || (type == IF_IDE && secs > 63)) {
231 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", buf);
239 "qemu: '%s' trans must be used with cyls,heads and secs\n",
259 if (cyls || secs || heads) {
434 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
    [all...]
  /external/tcpdump/
util.c 211 relts_print(int secs)
218 if (secs == 0) {
222 if (secs < 0) {
224 secs = -secs;
226 while (secs > 0) {
227 if (secs >= *s) {
228 (void)printf("%d%s", secs / *s, *l);
229 secs -= (secs / *s) * *s
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
ExperimentService.java 143 public void delay(int secs) {
145 sendMessageDelayed(obtainMessage(0), secs * 1000);
  /external/grub/docs/
menu.lst 5 # Boot automatically after 30 secs.
  /packages/apps/Mms/res/layout/
edit_slide_duration.xml 55 android:text="@string/secs" />

Completed in 1730 milliseconds

1 2 3 4 5 6 7 8 91011>>