/freebsd/sys/dev/ath/ath_hal/ar5212/ |
H A D | ar5212_interrupts.c | 137 ar5212SetInterrupts(struct ath_hal *ah, HAL_INT ints) in ar5212SetInterrupts() argument 144 __func__, omask, ints); in ar5212SetInterrupts() 152 mask = ints & HAL_INT_COMMON; in ar5212SetInterrupts() 154 if (ints & HAL_INT_TX) { in ar5212SetInterrupts() 164 if (ints & HAL_INT_RX) in ar5212SetInterrupts() 166 if (ints & (HAL_INT_BMISC)) { in ar5212SetInterrupts() 168 if (ints & HAL_INT_TIM) in ar5212SetInterrupts() 170 if (ints & HAL_INT_DTIM) in ar5212SetInterrupts() 172 if (ints & HAL_INT_DTIMSYNC) in ar5212SetInterrupts() 174 if (ints & HAL_INT_CABEND) in ar5212SetInterrupts() [all …]
|
/freebsd/sys/dev/ath/ath_hal/ar5416/ |
H A D | ar5416_interrupts.c | 264 ar5416SetInterrupts(struct ath_hal *ah, HAL_INT ints) in ar5416SetInterrupts() argument 271 __func__, omask, ints); in ar5416SetInterrupts() 287 mask = ints & HAL_INT_COMMON; in ar5416SetInterrupts() 295 if (ints & HAL_INT_RX) in ar5416SetInterrupts() 298 if (ints & HAL_INT_RX) in ar5416SetInterrupts() 301 if (ints & HAL_INT_TX) { in ar5416SetInterrupts() 313 if (ints & (HAL_INT_BMISC)) { in ar5416SetInterrupts() 315 if (ints & HAL_INT_TIM) in ar5416SetInterrupts() 317 if (ints & HAL_INT_DTIM) in ar5416SetInterrupts() 319 if (ints & HAL_INT_DTIMSYNC) in ar5416SetInterrupts() [all …]
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_interrupts.c | 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 & HAL_INT_DTIM) { 601 if (ints & HAL_INT_DTIMSYNC) { [all …]
|
H A D | ar9300_freebsd.c | 666 ar9300_set_interrupts_freebsd(struct ath_hal *ah, HAL_INT ints) in ar9300_set_interrupts_freebsd() argument 670 return ar9300_set_interrupts(ah, ints, 0); in ar9300_set_interrupts_freebsd()
|
/freebsd/sys/dev/ath/ath_hal/ar5211/ |
H A D | ar5211_interrupts.c | 106 ar5211SetInterrupts(struct ath_hal *ah, HAL_INT ints) in ar5211SetInterrupts() argument 113 __func__, omask, ints); in ar5211SetInterrupts() 127 mask = ints & HAL_INT_COMMON; in ar5211SetInterrupts() 128 if (ints & HAL_INT_TX) { in ar5211SetInterrupts() 138 if (ints & HAL_INT_RX) in ar5211SetInterrupts() 140 if (ints & HAL_INT_FATAL) { in ar5211SetInterrupts() 151 ahp->ah_maskReg = ints; in ar5211SetInterrupts() 154 if (ints & HAL_INT_GLOBAL) { in ar5211SetInterrupts()
|
H A D | ar5211_xmit.c | 41 HAL_INT ints = ar5211GetInterrupts(ah); in ar5211UpdateTxTrigLevel() local 47 ar5211SetInterrupts(ah, ints &~ HAL_INT_GLOBAL); in ar5211UpdateTxTrigLevel() 62 ar5211SetInterrupts(ah, ints); in ar5211UpdateTxTrigLevel() 70 ar5211SetInterrupts(ah, ints); in ar5211UpdateTxTrigLevel()
|
/freebsd/sys/dev/ath/ath_hal/ar5210/ |
H A D | ar5210_interrupts.c | 89 ar5210SetInterrupts(struct ath_hal *ah, HAL_INT ints) in ar5210SetInterrupts() argument 96 __func__, omask, ints); in ar5210SetInterrupts() 108 mask = ints & (HAL_INT_COMMON - HAL_INT_BNR); in ar5210SetInterrupts() 109 if (ints & HAL_INT_RX) in ar5210SetInterrupts() 111 if (ints & HAL_INT_TX) { in ar5210SetInterrupts() 125 ahp->ah_maskReg = ints; in ar5210SetInterrupts() 128 if (ints & HAL_INT_GLOBAL) { in ar5210SetInterrupts()
|
H A D | ar5210_xmit.c | 332 HAL_INT ints = ar5210GetInterrupts(ah); in ar5210UpdateTxTrigLevel() local 338 (void) ar5210SetInterrupts(ah, ints &~ HAL_INT_GLOBAL); in ar5210UpdateTxTrigLevel() 352 ar5210SetInterrupts(ah, ints); in ar5210UpdateTxTrigLevel() 359 ar5210SetInterrupts(ah, ints); in ar5210UpdateTxTrigLevel()
|
H A D | ar5210.h | 296 extern HAL_INT ar5210SetInterrupts(struct ath_hal *, HAL_INT ints);
|
/freebsd/sys/dev/uart/ |
H A D | uart_dev_pl011.c | 470 uint32_t ints; in uart_pl011_bus_ipend() local 477 ints = __uart_getreg(bas, UART_MIS); in uart_pl011_bus_ipend() 480 if (ints & (UART_RXREADY | RIS_RTIM)) in uart_pl011_bus_ipend() 482 if (ints & RIS_BE) in uart_pl011_bus_ipend() 484 if (ints & RIS_OE) in uart_pl011_bus_ipend() 486 if (ints & UART_TXEMPTY) { in uart_pl011_bus_ipend() 573 uint32_t ints, xc; in uart_pl011_bus_receive() local 580 ints = __uart_getreg(bas, UART_FR); in uart_pl011_bus_receive() 581 if (ints & FR_RXFE) in uart_pl011_bus_receive()
|
H A D | uart_dev_mu.c | 370 uint32_t ints; in uart_mu_bus_ipend() local 377 ints = __uart_getreg(bas, AUX_MU_IIR_REG); in uart_mu_bus_ipend() 384 if (ints & IIR_RXREADY) { in uart_mu_bus_ipend() 386 } else if (ints & IIR_TXREADY) { in uart_mu_bus_ipend()
|
/freebsd/cddl/usr.sbin/dtrace/tests/common/printf/ |
H A D | Makefile | 29 tst.ints.d \ 30 tst.ints.d.out \
|
/freebsd/sys/arm/allwinner/ |
H A D | aw_thermal.c | 570 uint32_t ints; in aw_thermal_intr() local 575 ints = RD4(sc, THS_INTS); in aw_thermal_intr() 576 WR4(sc, THS_INTS, ints); in aw_thermal_intr() 578 if ((ints & SHUT_INT_ALL) != 0) { in aw_thermal_intr() 584 if ((ints & ALARM_INT_ALL) != 0) in aw_thermal_intr()
|
/freebsd/contrib/libcbor/ |
H A D | Bazel.md | 41 "cbor/encoding.h", "cbor/floats_ctrls.h", "cbor/ints.h", "cbor/maps.h", 60 "cbor/encoding.h", "cbor/floats_ctrls.h", "cbor/ints.h", "cbor/maps.h",
|
/freebsd/sys/crypto/ccp/ |
H A D | ccp_hardware.c | 538 ccp_intr_run_completions(struct ccp_queue *qp, uint32_t ints) in ccp_intr_run_completions() argument 592 if ((ints & INT_ERROR) != 0) in ccp_intr_run_completions() 603 uint32_t ints; in ccp_intr_handler() local 616 ints = ccp_read_queue_4(sc, i, CMD_Q_INTERRUPT_STATUS_BASE); in ccp_intr_handler() 617 if (ints == 0) in ccp_intr_handler() 622 (unsigned)ints, i); in ccp_intr_handler() 625 ccp_write_queue_4(sc, i, CMD_Q_INTERRUPT_STATUS_BASE, ints); in ccp_intr_handler() 632 if ((ints & (INT_COMPLETION | INT_ERROR)) != 0) in ccp_intr_handler() 633 ccp_intr_run_completions(&sc->queues[i], ints); in ccp_intr_handler() 635 if ((ints & INT_QUEUE_STOPPED) != 0) in ccp_intr_handler()
|
/freebsd/lib/libcbor/ |
H A D | Makefile | 16 SRCS+= cbor/ints.c
|
/freebsd/contrib/libcbor/doc/ |
H A D | doxy_frontpage.md | 27 - \ref src/cbor/ints.h
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCCallingConv.td | 157 // Only handle ints and floats. All ints are promoted to i64. 158 // Vector types and quadword ints are not handled. 172 // All small ints are promoted to i64. Vector types, quadword ints,
|
/freebsd/contrib/libcbor/src/ |
H A D | CMakeLists.txt | 1 set(SOURCES cbor.c allocators.c cbor/streaming.c cbor/internal/encoders.c cbor/internal/builder_callbacks.c cbor/internal/loaders.c cbor/internal/memory_utils.c cbor/internal/stack.c cbor/internal/unicode.c cbor/encoding.c cbor/serialization.c cbor/arrays.c cbor/common.c cbor/floats_ctrls.c cbor/bytestrings.c cbor/callbacks.c cbor/strings.c cbor/maps.c cbor/tags.c cbor/ints.c)
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUInstrInfo.td | 178 // out = max(a, b, c) a, b, and c are signed ints 183 // out = max(a, b, c) a, b and c are unsigned ints 198 // out = min(a, b, c) a, b and c are signed ints 203 // out = min(a, b) a and b are unsigned ints
|
/freebsd/contrib/gdtoa/ |
H A D | changes | 35 reasonably with huge numbers and 16-bit ints. 50 With 32-bit ints, the former could give too small a block for the return 51 value when, e.g., mode = 2 or 4 and ndigits = 24 (16 for 16-bit ints). 54 dtoa.c: tweak to work with 32-bit ints and 64-bit longs 161 interesting bits stored in 3 unsigned 32-bit ints (with a "hole", 16 163 family now deals with 80-bit (5 unsigned 16-bit ints) rather than 164 96-bit arrays (3 unsigned 32-bit ints) that hold its 80-bit
|
/freebsd/contrib/libcbor/doc/source/ |
H A D | using.rst | 42 - ``cbor/ints.h`` - :doc:`api/type_0_1`
|
/freebsd/usr.bin/tail/tests/ |
H A D | tail_test.sh | 268 atf_check -o save:ints seq -f '%128g' 1 1000
|
/freebsd/contrib/bzip2/ |
H A D | CHANGES | 125 which supports 64-bit ints, so, except for the C library 215 on selected platforms which support 64-bit ints. At the moment
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcCallingConv.td | 85 // Two ints in a struct are simply coerced to i64:
|