Home
last modified time | relevance | path

Searched refs:ints (Results 1 – 11 of 11) sorted by relevance

/f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_interrupts.c535 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) {
648 ahp->ah_mask_reg = ints;
662 if ((ints & HAL_INT_GLOBAL)) {
674 if (ints & HAL_INT_GPIO) {
682 if (ints & HAL_INT_MCI) {
[all …]
H A Dar9300_freebsd.c648 ar9300_set_interrupts_freebsd(struct ath_hal *ah, HAL_INT ints) in ar9300_set_interrupts_freebsd() argument
652 return ar9300_set_interrupts(ah, ints, 0); in ar9300_set_interrupts_freebsd()
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) in ar9300_mci_check_int() argument
1367 return ((reg & ints) == ints); in ar9300_mci_check_int()
H A Dar9300_stub_funcs.c148 ar9300_Stub_SetInterrupts(struct ath_hal *ah, HAL_INT ints) in ar9300_Stub_SetInterrupts() argument
H A Dar9300.h1215 extern HAL_INT ar9300_set_interrupts(struct ath_hal *ah, HAL_INT ints, HAL_BOOL);
1673 extern u_int32_t ar9300_mci_check_int (struct ath_hal *ah, u_int32_t ints);
/f-stack/freebsd/arm/allwinner/
H A Daw_thermal.c575 uint32_t ints; in aw_thermal_intr() local
580 ints = RD4(sc, THS_INTS); in aw_thermal_intr()
581 WR4(sc, THS_INTS, ints); in aw_thermal_intr()
583 if ((ints & SHUT_INT_ALL) != 0) { in aw_thermal_intr()
589 if ((ints & ALARM_INT_ALL) != 0) in aw_thermal_intr()
/f-stack/freebsd/crypto/ccp/
H A Dccp_hardware.c540 ccp_intr_run_completions(struct ccp_queue *qp, uint32_t ints) in ccp_intr_run_completions() argument
594 if ((ints & INT_ERROR) != 0) in ccp_intr_run_completions()
605 uint32_t ints; in ccp_intr_handler() local
618 ints = ccp_read_queue_4(sc, i, CMD_Q_INTERRUPT_STATUS_BASE); in ccp_intr_handler()
619 if (ints == 0) in ccp_intr_handler()
624 (unsigned)ints, i); in ccp_intr_handler()
627 ccp_write_queue_4(sc, i, CMD_Q_INTERRUPT_STATUS_BASE, ints); in ccp_intr_handler()
634 if ((ints & (INT_COMPLETION | INT_ERROR)) != 0) in ccp_intr_handler()
635 ccp_intr_run_completions(&sc->queues[i], ints); in ccp_intr_handler()
637 if ((ints & INT_QUEUE_STOPPED) != 0) in ccp_intr_handler()
/f-stack/freebsd/mips/atheros/
H A Dif_arge.c2561 uint32_t status, ints; in arge_intr_filter() local
2564 ints = ARGE_READ(sc, AR71XX_DMA_INTR); in arge_intr_filter()
2566 ARGEDEBUG(sc, ARGE_DBG_INTR, "int mask(filter) = %b\n", ints, in arge_intr_filter()
/f-stack/freebsd/contrib/openzfs/cmd/ztest/
H A Dztest.c5132 int i, ints; in ztest_zap() local
5177 ints = MAX(ZTEST_ZAP_MIN_INTS, object % ZTEST_ZAP_MAX_INTS); in ztest_zap()
5200 ASSERT3U(zl_ints, ==, ints); in ztest_zap()
5205 for (i = 0; i < ints; i++) { in ztest_zap()
5228 for (i = 0; i < ints; i++) in ztest_zap()
5234 ints, value, tx)); in ztest_zap()
/f-stack/freebsd/contrib/zlib/
H A DChangeLog303 - Check that pointers fit in ints when gzprint() compiled old style