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

1 2 3 4 5 6 7 8 910

  /external/chromium/chrome/common/extensions/docs/examples/api/messaging/timer/
popup.html 36 var usec = Math.round(timer.microseconds() / response.counter);
37 setChildTextNode("resultsRequest", usec + "usec");
58 var usec = Math.round(timer.microseconds() / response.counter);
59 setChildTextNode("resultsConnect", usec + "usec");
  /external/chromium_org/chrome/common/extensions/docs/examples/api/messaging/timer/
popup.js 28 var usec = Math.round(timer.microseconds() / response.counter);
29 setChildTextNode("resultsRequest", usec + "usec");
50 var usec = Math.round(timer.microseconds() / response.counter);
51 setChildTextNode("resultsConnect", usec + "usec");
  /system/extras/tests/schedtest/
schedtest.c 36 long usec = (tv2.tv_sec - tv1.tv_sec) * 1000000 + tv2.tv_usec - tv1.tv_usec; local
37 avg += usec;
39 if (usec > max) max = usec;
  /bionic/libc/bionic/
usleep.c 31 int usleep(unsigned long usec)
35 ts.tv_sec = usec/1000000UL;
39 ts.tv_nsec = (usec - ts.tv_sec*1000000UL)*1000;
41 ts.tv_nsec = (usec % 1000000UL) * 1000UL;
  /external/qemu/
hpet.h 20 #define HPET_IRQFREQ _IOW('h', 0x6, unsigned long) /* IRQFREQ usec */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
hpet.h 20 #define HPET_IRQFREQ _IOW('h', 0x6, unsigned long) /* IRQFREQ usec */
taskstats.h 114 /* Elapsed time [usec] */
115 __u64 ac_utime; /* User CPU time [usec] */
116 __u64 ac_stime; /* SYstem CPU time [usec] */
128 __u64 coremem; /* accumulated RSS usage in MB-usec */
132 __u64 virtmem; /* accumulated VM usage in MB-usec */
timex.h 101 long offset; /* time offset (usec) */
103 long maxerror; /* maximum error (usec) */
104 long esterror; /* estimated error (usec) */
107 long precision; /* clock precision (usec) (read only) */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
hpet.h 20 #define HPET_IRQFREQ _IOW('h', 0x6, unsigned long) /* IRQFREQ usec */
taskstats.h 114 /* Elapsed time [usec] */
115 __u64 ac_utime; /* User CPU time [usec] */
116 __u64 ac_stime; /* SYstem CPU time [usec] */
128 __u64 coremem; /* accumulated RSS usage in MB-usec */
132 __u64 virtmem; /* accumulated VM usage in MB-usec */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
hpet.h 20 #define HPET_IRQFREQ _IOW('h', 0x6, unsigned long) /* IRQFREQ usec */
taskstats.h 114 /* Elapsed time [usec] */
115 __u64 ac_utime; /* User CPU time [usec] */
116 __u64 ac_stime; /* SYstem CPU time [usec] */
128 __u64 coremem; /* accumulated RSS usage in MB-usec */
132 __u64 virtmem; /* accumulated VM usage in MB-usec */
  /external/tcpdump/
print-timed.c 51 long sec, usec; local
90 usec = EXTRACT_32BITS(&tsp->tsp_time.tv_usec);
91 if (usec < 0)
95 if (sec < 0 && usec != 0) {
99 usec = 1000000 - usec;
101 printf("%ld.%06ld", sec, usec);
  /external/wpa_supplicant_8/wpa_supplicant/
scan.h 13 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
15 int sec, int usec);
  /external/wpa_supplicant_8/src/utils/
os_win32.c 16 void os_sleep(os_time_t sec, os_time_t usec)
20 if (usec)
21 Sleep(usec / 1000);
44 t->usec = (os_time_t) (tt % 1000000);
  /external/blktrace/
blkiomon.h 108 minmax_print(fp, "d2c read (usec)", &p->d2c_r);
109 minmax_print(fp, "d2c write (usec)", &p->d2c_w);
113 histlog2_print(fp, "d2c histogram (usec)", p->d2c_hist, &d2c_hist);
  /external/netperf/
hist.h 17 0 - 9 in increments of 1 usec
33 Rick Jones 2004-06-15 - extend to 1 and 10 usec
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
FastTimes.c 89 static double gScaleUSec = 1.0 / 1000.0; /* 1 / ( nsec / usec) */
182 UInt64 usec; local
191 usec = (double) WideTo64bit(wide) * gScaleUSec + 0.5;
196 usec = (double) WideTo64bit(wide) * gScaleUSec + 0.5;
201 usec = (double) WideTo64bit(wide) * gScaleUSec + 0.5;
206 usec = (double) RTCToNano(wide) * gScaleUSec + 0.5;
213 usec = WideTo64bit(wide);
216 return(usec);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
event_listener.cc 69 uint64_t usec = usec_since_epoch(); local
70 usec += ((int64_t) ms_timeout * 1000);
72 timeout->tv_nsec = (usec % 1000000) * 1000;
73 timeout->tv_sec = (usec / 1000000);
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_ETC.c 163 unsigned long sec, usec, time; local
167 usec = stop->tv_usec - start->tv_usec;
169 usec = stop->tv_usec + 1000000 - start->tv_usec;
173 time = sec * 1000000 + (usec);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
nfnetlink_log.h 32 aligned_be64 usec; member in struct:nfulnl_msg_packet_timestamp
nfnetlink_queue.h 29 aligned_be64 usec; member in struct:nfqnl_msg_packet_timestamp
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
spray.h 20 u_int usec; member in struct:spraytimeval
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
timex.h 37 long int offset; /* time offset (usec) */
39 long int maxerror; /* maximum error (usec) */
40 long int esterror; /* estimated error (usec) */
43 long int precision; /* clock precision (usec) (read only) */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
nfnetlink_log.h 32 aligned_be64 usec; member in struct:nfulnl_msg_packet_timestamp

Completed in 2855 milliseconds

1 2 3 4 5 6 7 8 910