HomeSort by relevance Sort by last modified time
    Searched refs:usec (Results 51 - 75 of 94) sorted by null

1 23 4

  /external/kernel-headers/original/linux/
jiffies.h 63 /* TICK_USEC is the time between ticks in usec assuming fake USER_HZ */
354 long usec = value->tv_usec; local
358 usec = 0;
361 (((u64)usec * USEC_CONVERSION + USEC_ROUND) >>
  /external/wpa_supplicant_6/wpa_supplicant/
scan.c 230 * @usec: Number of microseconds after which to scan
235 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec)
261 wpa_msg(wpa_s, MSG_DEBUG, "Setting scan request: %d sec %d usec",
262 sec, usec);
264 eloop_register_timeout(sec, usec, wpa_supplicant_scan, wpa_s, NULL);
wpa_supplicant_i.h 394 int sec, int usec);
420 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
  /external/wpa_supplicant_8/wpa_supplicant/
bss.c 73 os_time_t usec; local
87 usec = (src->age % 1000) * 1000;
88 if (dst->last_update.usec < usec) {
90 dst->last_update.usec += 1000000;
92 dst->last_update.usec -= usec;
scan.c 500 * @usec: Number of microseconds after which to scan
505 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec)
529 wpa_dbg(wpa_s, MSG_DEBUG, "Setting scan request: %d sec %d usec",
530 sec, usec);
532 eloop_register_timeout(sec, usec, wpa_supplicant_scan, wpa_s, NULL);
sme.c 605 tu = (passed.sec * 1000000 + passed.usec) / 1024;
640 unsigned int timeout, sec, usec; local
664 usec = (timeout % 1000) * 1024;
665 eloop_register_timeout(sec, usec, sme_sa_query_timer, wpa_s, NULL);
wpa_supplicant_i.h 585 int sec, int usec);
  /development/tools/emulator/system/libqemu/
test_util.c 40 return tv.sec + (double)tv.usec/1e6;
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
wpa_debug.c 70 (unsigned int) tv.usec);
73 printf("%ld.%06u: ", (long) tv.sec, (unsigned int) tv.usec);
eloop_win.c 255 timeout->time.usec += usecs;
256 while (timeout->time.usec >= 1000000) {
258 timeout->time.usec -= 1000000;
466 tv.sec = tv.usec = 0;
484 timeout = tv.sec * 1000 + tv.usec / 1000;
  /external/wpa_supplicant/
eloop_win.c 255 timeout->time.usec += usecs;
256 while (timeout->time.usec >= 1000000) {
258 timeout->time.usec -= 1000000;
471 tv.sec = tv.usec = 0;
485 timeout = tv.sec * 1000 + tv.usec / 1000;
wpa_supplicant_i.h 379 int sec, int usec);
387 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
wpa_supplicant.c 488 * @usec: Number of microseconds after which to scan
493 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec)
519 wpa_msg(wpa_s, MSG_DEBUG, "Setting scan request: %d sec %d usec",
520 sec, usec);
522 eloop_register_timeout(sec, usec, wpa_supplicant_scan, wpa_s, NULL);
561 * @usec: Number of microseconds after which to time out authentication
567 int sec, int usec)
574 "%d usec", sec, usec);
576 eloop_register_timeout(sec, usec, wpa_supplicant_timeout, wpa_s, NULL)
    [all...]
  /external/wpa_supplicant_8/src/utils/
eloop_win.c 264 timeout->time.usec += usecs;
265 while (timeout->time.usec >= 1000000) {
267 timeout->time.usec -= 1000000;
473 tv.sec = tv.usec = 0;
491 timeout = tv.sec * 1000 + tv.usec / 1000;
wpa_debug.c 77 (unsigned int) tv.usec);
80 printf("%ld.%06u: ", (long) tv.sec, (unsigned int) tv.usec);
  /external/svox/pico/lib/
picopal.h 281 extern void picopal_get_timer(picopal_uint32 * sec, picopal_uint32 * usec);
picoos.h 543 void picoos_get_timer(picopal_uint32 * sec, picopal_uint32 * usec);
  /frameworks/base/opengl/libagl/
dxt.cpp 184 long usec = (end_t.tv_sec - start_t.tv_sec)*1000000 + local
187 printf("Scanned w=%d h=%d in %ld usec\n", width, height, usec);
629 long usec = (end_t.tv_sec - start_t.tv_sec)*1000000 + local
632 printf("Loaded w=%d h=%d in %ld usec\n", width, height, usec);
  /external/grub/netboot/
otulip.c 71 static void udelay(unsigned long usec) {
73 for (i=((usec*UADJUST)/33)+1; i>0; i--) (void) TULIP_CSR_READ(csr_0);
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_common.c 245 val = os_random() ^ now.sec ^ now.usec;
  /external/wpa_supplicant_8/src/ap/
sta_info.c 687 tu = (passed.sec * 1000000 + passed.usec) / 1024;
709 unsigned int timeout, sec, usec; local
732 usec = (timeout % 1000) * 1024;
733 eloop_register_timeout(sec, usec, ap_sa_query_timer, hapd, sta);
  /external/qemu/slirp/
misc.c 759 u_sleep(int usec)
767 t.tv_usec = usec * 1000;
  /external/qemu/slirp-android/
misc.c 724 u_sleep(int usec)
732 t.tv_usec = usec * 1000;
  /external/v8/benchmarks/
base.js 224 var usec = (data.elapsed * 1000) / data.runs;
225 this.NotifyStep(new BenchmarkResult(benchmark, usec));
  /external/v8/src/
log.cc 958 uint32_t sec, usec; local
959 if (OS::GetUserTime(&sec, &usec) != -1) {
960 msg.Append("%d,%d,", sec, usec);
    [all...]

Completed in 830 milliseconds

1 23 4