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

1 2

  /external/syslinux/gpxe/src/include/
old_tcp.h 4 #define TCP_INITIAL_TIMEOUT (3*TICKS_PER_SEC)
5 #define TCP_MAX_TIMEOUT (60*TICKS_PER_SEC)
6 #define TCP_MIN_TIMEOUT (TICKS_PER_SEC)
  /external/syslinux/gpxe/src/include/gpxe/
retry.h 15 #define DEFAULT_MIN_TIMEOUT ( TICKS_PER_SEC / 4 )
18 #define DEFAULT_MAX_TIMEOUT ( 10 * TICKS_PER_SEC )
timer.h 69 * @ret ticks_per_sec Number of ticks per second
71 unsigned long ticks_per_sec ( void );
74 #define TICKS_PER_SEC ( ticks_per_sec() )
dhcp.h 597 #define DHCP_MIN_TIMEOUT ( 1 * TICKS_PER_SEC )
598 #define DHCP_MAX_TIMEOUT ( 10 * TICKS_PER_SEC )
601 #define PROXYDHCP_MAX_TIMEOUT ( 2 * TICKS_PER_SEC )
604 #define PXEBS_MAX_TIMEOUT ( 3 * TICKS_PER_SEC )
tcp.h 314 #define TCP_MSL ( 2 * 60 * TICKS_PER_SEC )
  /system/nfc/src/hal/include/
gki_hal_target.h 71 #ifndef TICKS_PER_SEC
72 #define TICKS_PER_SEC 100
79 #define GKI_MS_TO_TICKS(x) ((x) / (1000 / TICKS_PER_SEC))
83 #define GKI_SECS_TO_TICKS(x) ((x) * (TICKS_PER_SEC))
87 #define GKI_TICKS_TO_MS(x) ((x)*1000 / TICKS_PER_SEC)
91 #define GKI_TICKS_TO_SECS(x) ((x) / TICKS_PER_SEC)
  /external/syslinux/gpxe/src/core/
getkey.c 33 #define GETKEY_TIMEOUT ( TICKS_PER_SEC / 4 )
monojob.c 88 if ( elapsed >= TICKS_PER_SEC ) {
proto_eth_slow.c 83 #define FAST_PERIODIC_TIME (1*TICKS_PER_SEC)
84 #define SLOW_PERIODIC_TIME (30*TICKS_PER_SEC)
87 #define CHURN_DETECTION_TIME (60*TICKS_PER_SEC)
88 #define AGGREGATE_WAIT_TIME (2*TICKS_PER_SEC)
193 return when?(when - now)/TICKS_PER_SEC : 0;
  /system/nfc/src/gki/common/
gki.h 94 #ifdef TICKS_PER_SEC
95 #define GKI_MS_TO_TICKS(x) ((x) / (1000 / TICKS_PER_SEC))
96 #define GKI_SECS_TO_TICKS(x) ((x) * (TICKS_PER_SEC))
97 #define GKI_TICKS_TO_MS(x) ((x) * (1000 / TICKS_PER_SEC))
98 #define GKI_TICKS_TO_SECS(x) ((x) * (1 / TICKS_PER_SEC))
  /system/nfc/src/include/
gki_target.h 117 #ifndef TICKS_PER_SEC
118 #define TICKS_PER_SEC 100
  /external/syslinux/gpxe/src/drivers/net/
cs89x0.c 129 unsigned long tmo = currticks() + 4*TICKS_PER_SEC;
199 unsigned long tmo = currticks() + TICKS_PER_SEC;
246 if (currticks() - tmo > 40*TICKS_PER_SEC) {
414 for (tmo = currticks() + 5*TICKS_PER_SEC; currticks() < tmo; );
428 for (tmo = currticks()+5*TICKS_PER_SEC;
davicom.c 55 #define TX_TIME_OUT 2*TICKS_PER_SEC
370 to = currticks() + 2 * TICKS_PER_SEC;
498 davicom_wait(TICKS_PER_SEC);
sis900.h 369 #define TX_TIMEOUT (4*TICKS_PER_SEC)
smc9000.c 650 for (time_out = currticks() + 5*TICKS_PER_SEC; currticks() < time_out; ) {
715 status = 0; time_out = currticks() + 5*TICKS_PER_SEC;
pcnet32.c 613 time = currticks() + TICKS_PER_SEC; /* wait one second */
tulip.c 126 #define TX_TIME_OUT 2*TICKS_PER_SEC
    [all...]
  /external/syslinux/gpxe/src/arch/i386/firmware/pcbios/
gateA20.c 51 time = currticks() + TICKS_PER_SEC; /* max wait of 1 second */
  /external/syslinux/gpxe/src/usr/
pxemenu.c 322 if ( elapsed >= TICKS_PER_SEC ) {
  /external/syslinux/gpxe/src/net/udp/
slam.c 114 #define SLAM_SLAVE_TIMEOUT ( 1 * TICKS_PER_SEC )
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c     [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encoder.h 59 #define TICKS_PER_SEC 10000000
  /system/nfc/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 56 #define LINUX_SEC (1000 / TICKS_PER_SEC)
524 /* adjust hear bit tick in btld by changning TICKS_PER_SEC!!!!! this
    [all...]
  /system/nfc/src/gki/ulinux/
gki_ulinux.c 53 #define LINUX_SEC (1000 / TICKS_PER_SEC)
489 /* adjust hear bit tick in btld by changning TICKS_PER_SEC!!!!! this
    [all...]
  /external/syslinux/gpxe/src/net/80211/
net80211.c     [all...]

Completed in 286 milliseconds

1 2