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

1 2 3 4 5 6 7 8 91011

  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
time.h 36 * @param usec Number of microseconds to sleep.
39 int av_usleep(unsigned usec);
  /external/wpa_supplicant_8/src/ap/
bss_load.c 22 unsigned int sec, usec; local
37 usec = (hapd->bss_load_update_timeout % 1000) * 1024;
38 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
47 unsigned int sec, usec; local
55 usec = (hapd->bss_load_update_timeout % 1000) * 1024;
56 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
  /system/extras/tests/schedtest/
schedtest.c 37 long usec = (tv2.tv_sec - tv1.tv_sec) * 1000000 + tv2.tv_usec - tv1.tv_usec; local
38 avg += usec;
40 if (usec > max) max = usec;
  /external/fio/
time.c 10 * busy looping version for the last few usec
12 uint64_t usec_spin(unsigned int usec)
18 while ((t = utime_since_now(&start)) < usec)
24 uint64_t usec_sleep(struct thread_data *td, unsigned long usec)
31 unsigned long ts = usec;
33 if (usec < ns_granularity) {
34 t += usec_spin(usec);
38 ts = usec - ns_granularity;
54 if (ts >= usec)
57 usec -= ts
    [all...]
gettime.c 386 long sec, usec; local
390 usec = e->tv_usec - s->tv_usec;
391 if (sec > 0 && usec < 0) {
393 usec += 1000000;
399 if (sec < 0 || (sec == 0 && usec < 0))
402 ret = sec * 1000000ULL + usec;
417 long sec, usec, ret; local
420 usec = e->tv_usec - s->tv_usec;
421 if (sec > 0 && usec < 0) {
423 usec += 1000000
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
spray.x 45 unsigned int usec;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
spray.x 45 unsigned int usec;
  /external/tcpdump/
print-timed.c 99 long sec, usec; local
124 usec = EXTRACT_32BITS(&tsp->tsp_time.tv_usec);
126 if (usec < 0)
130 if (sec < 0 && usec != 0) {
134 usec = 1000000 - usec;
136 ND_PRINT((ndo, "%ld.%06ld", sec, usec));
  /external/libdrm/tests/
drmsl.c 68 double usec; local
98 usec = (double)(stop.tv_sec * 1000000 + stop.tv_usec
101 printf("%0.2f microseconds for list length %d\n", usec, size);
106 return usec;
127 double usec, usec2, usec3, usec4; local
158 usec = do_time(100, 10000);
161 1000.0/100.0, usec2 / usec);
165 10000.0/100.0, usec3 / usec);
169 100000.0/100.0, usec4 / usec);
  /external/autotest/client/site_tests/platform_TraceClockMonotonic/src/
ftrace-clock-monotonic.c 22 unsigned long usec; local
33 usec = ts.tv_nsec / 1000;
35 name, ts.tv_sec, usec);
  /external/wpa_supplicant_8/src/utils/
os.h 15 * os_sleep - Sleep (sec, usec)
17 * @usec: Number of microseconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
23 os_time_t usec; member in struct:os_time
28 os_time_t usec; member in struct:os_reltime
32 * os_get_time - Get current time (sec, usec)
39 * os_get_reltime - Get relative time (sec, usec)
51 (a->sec == b->sec && a->usec < b->usec);
59 res->usec = a->usec - b->usec
    [all...]
os_win32.c 17 void os_sleep(os_time_t sec, os_time_t usec)
21 if (usec)
22 Sleep(usec / 1000);
45 t->usec = (os_time_t) (tt % 1000000);
57 t->usec = now.usec;
  /external/avahi/avahi-daemon/
avahi-daemon.conf 38 ratelimit-interval-usec=1000000
  /external/valgrind/none/tests/s390x/
test.h 56 static inline void mysleep(long sec, long usec)
61 tv.tv_usec = usec;
  /external/autotest/client/common_lib/
smogcheck_util.py 70 usec: an int, difference between end and start in microseconds.
73 usec = 1000000 * t.seconds + t.microseconds
74 logging.info('Elapsed time = %d usec', usec)
75 return usec
smogcheck_ttci.py 194 usec: an integer.
197 usec = 1000000 * t.seconds + t.microseconds
198 logging.info('Elapsed time = %d usec', usec)
199 return usec
  /external/avahi/avahi-common/
timeval.h 42 struct timeval* avahi_timeval_add(struct timeval *a, AvahiUsec usec);
timeval.c 59 struct timeval* avahi_timeval_add(struct timeval *a, AvahiUsec usec) {
63 u = usec + a->tv_usec;
  /external/libpcap/pcap/
nflog.h 68 u_int64_t usec; member in struct:nflog_timestamp
  /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/libvncserver/examples/
camera.c 133 long usec; local
151 usec = server->deferUpdateTime*1000;
152 rfbProcessEvents(server,usec);
  /external/ltrace/testsuite/ltrace.minor/
time-record-T.exp 67 if [ regexp {nanosleep.*<([0-9]+\.[0-9]+)>} $line match usec] then {
68 verbose "nanosleep_usec = $nanosleep_usec, usec = $usec"
70 if { $usec * 1000 >= $nanosleep_usec} then {
73 fail "Spent $usec inside call, but PUT call nanosleep($nanosleep_usec)!"
  /system/connectivity/shill/net/
shill_time.h 78 static std::string FormatTime(const struct tm& date_time, suseconds_t usec);
  /external/ipsec-tools/src/libipsec/
policy_token.l 86 usec {dot}{digit}{1,6}
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
context.h 259 pa_time_event* pa_context_rttime_new(pa_context *c, pa_usec_t usec, pa_time_event_cb_t cb, void *userdata);
262 void pa_context_rttime_restart(pa_context *c, pa_time_event *e, pa_usec_t usec);

Completed in 1209 milliseconds

1 2 3 4 5 6 7 8 91011