HomeSort by relevance Sort by last modified time
    Searched refs:tmo (Results 1 - 6 of 6) sorted by null

  /external/grub/netboot/
cs89x0.c 102 unsigned long tmo = currticks() + 4*TICKS_PER_SEC; local
108 if (currticks() >= tmo)
172 unsigned long tmo = currticks() + TICKS_PER_SEC; local
183 while (currticks() < tmo);
190 unsigned long tmo; local
207 for (tmo = currticks() + 4; currticks() < tmo; );
219 if (currticks() - tmo > 40*TICKS_PER_SEC) {
241 unsigned long tmo; local
252 for (tmo = currticks() + 2
370 unsigned long tmo; local
    [all...]
misc.c 28 unsigned long tmo = currticks () + secs; local
30 while (currticks () < tmo)
main.c 1140 unsigned long tmo; local
1155 tmo = (base << exp) + (TICKS_PER_SEC - (seed / TWO_SECOND_DIVISOR));
1156 return tmo;
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_linux.c 471 * dhd_timeout_start(&tmo, usec);
472 * while (!dhd_timeout_expired(&tmo))
475 * if (dhd_timeout_expired(&tmo))
480 dhd_timeout_start(dhd_timeout_t *tmo, uint usec)
482 tmo->limit = usec;
483 tmo->increment = 0;
484 tmo->elapsed = 0;
485 tmo->tick = 1000000 / HZ;
489 dhd_timeout_expired(dhd_timeout_t *tmo)
492 if (tmo->increment == 0)
    [all...]
dhd.h 283 extern void dhd_timeout_start(dhd_timeout_t *tmo, uint usec);
284 extern int dhd_timeout_expired(dhd_timeout_t *tmo);
dhd_sdio.c 2437 dhd_timeout_t tmo; local
    [all...]

Completed in 44 milliseconds