Searched refs:usec (Results 1 - 25 of 130) sorted by relevance

123456

/external/opencv3/3rdparty/include/ffmpeg_/libavutil/
H A Dtime.h36 * @param usec Number of microseconds to sleep.
39 int av_usleep(unsigned usec);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dbss_load.c22 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,
/external/wpa_supplicant_8/src/ap/
H A Dbss_load.c22 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,
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dbss_load.c22 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,
/external/fio/
H A Dtime.c10 * busy looping version for the last few usec
12 uint64_t usec_spin(unsigned int usec) argument
18 while ((t = utime_since_now(&start)) < usec)
24 uint64_t usec_sleep(struct thread_data *td, unsigned long usec) argument
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
[all...]
/external/tcpdump/
H A Dprint-timed.c99 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/
H A Ddrmsl.c68 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/
H A Dftrace-clock-monotonic.c22 unsigned long usec; local
33 usec = ts.tv_nsec / 1000;
35 name, ts.tv_sec, usec);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h15 * 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
[all...]
H A Dos_win32.c17 void os_sleep(os_time_t sec, os_time_t usec) argument
21 if (usec)
22 Sleep(usec / 1000);
45 t->usec = (os_time_t) (tt % 1000000);
57 t->usec = now.usec;
/external/wpa_supplicant_8/src/utils/
H A Dos.h15 * 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
[all...]
H A Dos_win32.c17 void os_sleep(os_time_t sec, os_time_t usec) argument
21 if (usec)
22 Sleep(usec / 1000);
45 t->usec = (os_time_t) (tt % 1000000);
57 t->usec = now.usec;
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h15 * 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
[all...]
H A Dos_win32.c17 void os_sleep(os_time_t sec, os_time_t usec) argument
21 if (usec)
22 Sleep(usec / 1000);
45 t->usec = (os_time_t) (tt % 1000000);
57 t->usec = now.usec;
/external/avahi/avahi-daemon/
H A Davahi-daemon.conf38 ratelimit-interval-usec=1000000
/external/valgrind/none/tests/s390x/
H A Dtest.h56 static inline void mysleep(long sec, long usec) argument
61 tv.tv_usec = usec;
/external/autotest/client/common_lib/
H A Dsmogcheck_util.py70 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
H A Dsmogcheck_ttci.py194 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/
H A Dtimeval.h42 struct timeval* avahi_timeval_add(struct timeval *a, AvahiUsec usec);
H A Dtimeval.c59 struct timeval* avahi_timeval_add(struct timeval *a, AvahiUsec usec) { argument
63 u = usec + a->tv_usec;
/external/libpcap/pcap/
H A Dnflog.h68 u_int64_t usec; member in struct:nflog_timestamp
/external/wpa_supplicant_8/wpa_supplicant/
H A Dscan.h13 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
15 int sec, int usec);
/external/libvncserver/examples/
H A Dcamera.c133 long usec; local
151 usec = server->deferUpdateTime*1000;
152 rfbProcessEvents(server,usec);
/external/ltrace/testsuite/ltrace.minor/
H A Dtime-record-T.exp67 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)!"
/external/ipsec-tools/src/libipsec/
H A Dpolicy_token.l86 usec {dot}{digit}{1,6}

Completed in 835 milliseconds

123456