Searched refs:ints (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_interrupts.c135 * via the enumerated bitmask in ints.
138 ar5212SetInterrupts(struct ath_hal *ah, HAL_INT ints) argument
145 __func__, omask, ints);
153 mask = ints & HAL_INT_COMMON;
155 if (ints & HAL_INT_TX) {
165 if (ints & HAL_INT_RX)
167 if (ints & (HAL_INT_BMISC)) {
169 if (ints & HAL_INT_TIM)
171 if (ints & HAL_INT_DTIM)
173 if (ints
[all...]
H A Dar5212.h453 extern HAL_INT ar5212SetInterrupts(struct ath_hal *ah, HAL_INT ints);
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_interrupts.c89 ar5210SetInterrupts(struct ath_hal *ah, HAL_INT ints) argument
96 __func__, omask, ints);
108 mask = ints & (HAL_INT_COMMON - HAL_INT_BNR);
109 if (ints & HAL_INT_RX)
111 if (ints & HAL_INT_TX) {
125 ahp->ah_maskReg = ints;
128 if (ints & HAL_INT_GLOBAL) {
H A Dar5210_xmit.c332 HAL_INT ints = ar5210GetInterrupts(ah); local
338 (void) ar5210SetInterrupts(ah, ints &~ HAL_INT_GLOBAL);
352 ar5210SetInterrupts(ah, ints);
359 ar5210SetInterrupts(ah, ints);
H A Dar5210.h292 extern HAL_INT ar5210SetInterrupts(struct ath_hal *, HAL_INT ints);
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_interrupts.c103 * via the enumerated bitmask in ints.
106 ar5211SetInterrupts(struct ath_hal *ah, HAL_INT ints) argument
113 __func__, omask, ints);
127 mask = ints & HAL_INT_COMMON;
128 if (ints & HAL_INT_TX) {
138 if (ints & HAL_INT_RX)
140 if (ints & HAL_INT_FATAL) {
151 ahp->ah_maskReg = ints;
154 if (ints & HAL_INT_GLOBAL) {
H A Dar5211_xmit.c41 HAL_INT ints = ar5211GetInterrupts(ah); local
47 ar5211SetInterrupts(ah, ints &~ HAL_INT_GLOBAL);
62 ar5211SetInterrupts(ah, ints);
70 ar5211SetInterrupts(ah, ints);
H A Dar5211.h318 extern HAL_INT ar5211SetInterrupts(struct ath_hal *, HAL_INT ints);
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416_interrupts.c261 * via the enumerated bitmask in ints.
264 ar5416SetInterrupts(struct ath_hal *ah, HAL_INT ints) argument
271 __func__, omask, ints);
287 mask = ints & HAL_INT_COMMON;
295 if (ints & HAL_INT_RX)
298 if (ints & HAL_INT_RX)
301 if (ints & HAL_INT_TX) {
313 if (ints & (HAL_INT_BMISC)) {
315 if (ints & HAL_INT_TIM)
317 if (ints
[all...]
H A Dar5416.h227 extern HAL_INT ar5416SetInterrupts(struct ath_hal *ah, HAL_INT ints);
/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_interrupts.c496 * via the enumerated bitmask in ints.
499 ar9300_set_interrupts(struct ath_hal *ah, HAL_INT ints, HAL_BOOL nortc) argument
509 "%s: 0x%x => 0x%x\n", __func__, omask, ints);
535 if (ints & HAL_INT_GLOBAL) {
561 mask = ints & HAL_INT_COMMON;
565 if (ints & HAL_INT_TX) {
579 if (ints & HAL_INT_RX) {
593 if (ints & (HAL_INT_BMISC)) {
595 if (ints & HAL_INT_TIM) {
598 if (ints
[all...]
H A Dar9300_freebsd.c451 ar9300_set_interrupts_freebsd(struct ath_hal *ah, HAL_INT ints) argument
455 return ar9300_set_interrupts(ah, ints, 0);
H A Dar9300_stub_funcs.h28 extern HAL_INT ar9300_Stub_SetInterrupts(struct ath_hal *ah, HAL_INT ints);
H A Dar9300_mci.c1362 u_int32_t ar9300_mci_check_int(struct ath_hal *ah, u_int32_t ints) argument
1367 return ((reg & ints) == ints);
H A Dar9300.h1227 extern HAL_INT ar9300_set_interrupts(struct ath_hal *ah, HAL_INT ints, HAL_BOOL);
1684 extern u_int32_t ar9300_mci_check_int (struct ath_hal *ah, u_int32_t ints);
H A Dar9300_stub_funcs.c148 ar9300_Stub_SetInterrupts(struct ath_hal *ah, HAL_INT ints) argument
/freebsd-11-stable/sys/dev/uart/
H A Duart_dev_pl011.c362 uint32_t ints; local
368 ints = __uart_getreg(bas, UART_MIS);
371 if (ints & (UART_RXREADY | RIS_RTIM))
373 if (ints & RIS_BE)
375 if (ints & RIS_OE)
377 if (ints & UART_TXEMPTY) {
420 uint32_t ints, xc; local
426 ints = __uart_getreg(bas, UART_MIS);
427 while (ints & (UART_RXREADY | RIS_RTIM)) {
443 ints
[all...]
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/printf/
H A DMakefile31 tst.ints.d \
32 tst.ints.d.out \
/freebsd-11-stable/sys/arm/samsung/exynos/
H A Dexynos_uart.c321 uint32_t ints; local
327 ints = bus_space_read_4(sc->sc_bas.bst, sc->sc_bas.bsh, SSCOM_UINTP);
328 bus_space_write_4(sc->sc_bas.bst, sc->sc_bas.bsh, SSCOM_UINTP, ints);
334 if ((ints & txempty) > 0) {
346 if ((ints & rxready) > 0) {
/freebsd-11-stable/sys/dev/patm/
H A Dif_patm_intr.c112 const uint32_t ints = IDT_STAT_TSIF | IDT_STAT_TXICP | IDT_STAT_TSQF | local
121 patm_nor_write(sc, IDT_NOR_STAT, stat & (ints | fbqa));
166 while ((stat & ints) != 0) {
215 patm_nor_write(sc, IDT_NOR_STAT, ints & stat);
/freebsd-11-stable/sys/dev/tl/
H A Dif_tl.c1640 u_int16_t ints = 0; local
1647 ints = CSR_READ_2(sc, TL_HOST_INT);
1648 CSR_WRITE_2(sc, TL_HOST_INT, ints);
1649 type = (ints << 16) & 0xFFFF0000;
1650 ivec = (ints & TL_VEC_MASK) >> 5;
1651 ints = (ints & TL_INT_MASK) >> 2;
1655 switch(ints) {
/freebsd-11-stable/stand/pc98/btx/btx/
H A Dbtx.S583 jecxz intusr.6 # Skip for hardware ints
670 jz rret_tramp.3 # for hardware ints
/freebsd-11-stable/stand/i386/btx/btx/
H A Dbtx.S557 jecxz intusr.6 # Skip for hardware ints
644 jz rret_tramp.3 # for hardware ints
/freebsd-11-stable/sys/mips/atheros/
H A Dif_arge.c2499 uint32_t status, ints; local
2502 ints = ARGE_READ(sc, AR71XX_DMA_INTR);
2504 ARGEDEBUG(sc, ARGE_DBG_INTR, "int mask(filter) = %b\n", ints,
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c4319 int i, ints; local
4362 ints = MAX(ZTEST_ZAP_MIN_INTS, object % ZTEST_ZAP_MAX_INTS);
4385 ASSERT3U(zl_ints, ==, ints);
4390 for (i = 0; i < ints; i++) {
4413 for (i = 0; i < ints; i++)
4419 ints, value, tx));

Completed in 425 milliseconds

12