Home
last modified time | relevance | path

Searched refs:TICKS_PER_SEC (Results 1 – 22 of 22) sorted by relevance

/external/libnfc-nci/halimpl/bcm2079x/hal/include/
Dgki_hal_target.h69 #ifndef TICKS_PER_SEC
70 #define TICKS_PER_SEC 100 macro
77 #define GKI_MS_TO_TICKS(x) ((x) / (1000 / TICKS_PER_SEC))
81 #define GKI_SECS_TO_TICKS(x) ((x) * (TICKS_PER_SEC))
85 #define GKI_TICKS_TO_MS(x) ((x) * 1000 / TICKS_PER_SEC)
89 #define GKI_TICKS_TO_SECS(x) ((x) / TICKS_PER_SEC)
/external/libnfc-nci/src/hal/include/
Dgki_hal_target.h69 #ifndef TICKS_PER_SEC
70 #define TICKS_PER_SEC 100 macro
77 #define GKI_MS_TO_TICKS(x) ((x) / (1000 / TICKS_PER_SEC))
81 #define GKI_SECS_TO_TICKS(x) ((x) * (TICKS_PER_SEC))
85 #define GKI_TICKS_TO_MS(x) ((x) * 1000 / TICKS_PER_SEC)
89 #define GKI_TICKS_TO_SECS(x) ((x) / TICKS_PER_SEC)
/external/bluetooth/bluedroid/include/
Dgki_target.h89 #ifndef TICKS_PER_SEC
90 #define TICKS_PER_SEC 100 macro
97 #define GKI_MS_TO_TICKS(x) ((x) / (1000 / TICKS_PER_SEC))
101 #define GKI_SECS_TO_TICKS(x) ((x) * (TICKS_PER_SEC))
105 #define GKI_TICKS_TO_MS(x) ((x) * 1000 / TICKS_PER_SEC)
109 #define GKI_TICKS_TO_SECS(x) ((x) / TICKS_PER_SEC)
/external/libnfc-nci/src/gki/common/
Dgki.h105 #ifdef TICKS_PER_SEC
106 #define GKI_MS_TO_TICKS(x) ((x) / (1000/TICKS_PER_SEC))
107 #define GKI_SECS_TO_TICKS(x) ((x) * (TICKS_PER_SEC))
108 #define GKI_TICKS_TO_MS(x) ((x) * (1000/TICKS_PER_SEC))
109 #define GKI_TICKS_TO_SECS(x) ((x) * (1/TICKS_PER_SEC))
/external/grub/netboot/
Detherboot.h71 #define TICKS_PER_SEC 18 macro
74 #define TIMEOUT (10 * TICKS_PER_SEC)
78 #define TFTP_TIMEOUT (30 * TICKS_PER_SEC)
80 #define TFTP_REXMT (3 * TICKS_PER_SEC)
Dcs89x0.c102 unsigned long tmo = currticks() + 4*TICKS_PER_SEC; in wait_eeprom_ready()
172 unsigned long tmo = currticks() + TICKS_PER_SEC; in control_dc_dc()
219 if (currticks() - tmo > 40*TICKS_PER_SEC) { in detect_tp()
387 for (tmo = currticks() + 5*TICKS_PER_SEC; currticks() < tmo; ); in cs89x0_transmit()
401 for (tmo = currticks()+5*TICKS_PER_SEC; in cs89x0_transmit()
Dtimer.c30 #define HZ TICKS_PER_SEC
Ddavicom.c52 #define TX_TIME_OUT 2*TICKS_PER_SEC
375 to = currticks() + 2 * TICKS_PER_SEC; in davicom_media_chk()
501 davicom_wait(TICKS_PER_SEC); in davicom_reset()
Dsmc9000.c215 for (time_out = currticks() + 5*TICKS_PER_SEC; currticks() < time_out; ) { in smc9000_transmit()
280 status = 0; time_out = currticks() + 5*TICKS_PER_SEC; in smc9000_transmit()
Dtiara.c185 time = currticks() + TICKS_PER_SEC; /* wait one second */ in tiara_transmit()
Dsis900.h357 #define TX_TIMEOUT (4*TICKS_PER_SEC)
Dmain.c676 ip.bp.bp_secs = htons ((currticks () - starttime) / TICKS_PER_SEC); in bootp()
1130 #define TWO_SECOND_DIVISOR (2147483647l/TICKS_PER_SEC)
1155 tmo = (base << exp) + (TICKS_PER_SEC - (seed / TWO_SECOND_DIVISOR)); in rfc2131_sleep_interval()
Drtl8139.c69 #define RTL_TIMEOUT (1*TICKS_PER_SEC)
Di82586.c351 time = currticks() + TICKS_PER_SEC; /* allow 1 second to init */ in i82586_reset()
Dnatsemi.c67 #define TX_TIMEOUT (4*TICKS_PER_SEC)
Dlance.c369 time = currticks() + TICKS_PER_SEC; /* wait one second */ in lance_transmit()
Dtulip.c117 #define TX_TIME_OUT 2*TICKS_PER_SEC
1387 tulip_wait(4*TICKS_PER_SEC); in tulip_probe()
/external/libnfc-nci/src/include/
Dgki_target.h131 #ifndef TICKS_PER_SEC
132 #define TICKS_PER_SEC 100 macro
/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
Dgki_ulinux.c58 #define LINUX_SEC (1000/TICKS_PER_SEC)
/external/libnfc-nci/src/gki/ulinux/
Dgki_ulinux.c57 #define LINUX_SEC (1000/TICKS_PER_SEC)
/external/bluetooth/bluedroid/gki/ulinux/
Dgki_ulinux.c71 #define LINUX_SEC (1000/TICKS_PER_SEC)
/external/bluetooth/bluedroid/btif/src/
Dbtif_media_task.c1754 …TRACE_EVENT2("starting timer %d ticks (%d)", GKI_MS_TO_TICKS(BTIF_MEDIA_TIME_TICK), TICKS_PER_SEC); in btif_media_task_aa_start_tx()