Searched refs:masked (Results 1 - 10 of 10) sorted by relevance

/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5210/
H A Dar5210_interrupts.c42 ar5210GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked) argument
51 *masked = 0;
58 * also masked with the abstracted IMR to insure no
62 *masked = (isr & (HAL_INT_COMMON - HAL_INT_BNR)) & ahp->ah_maskReg;
65 *masked |= HAL_INT_FATAL;
67 *masked |= HAL_INT_RX;
69 *masked |= HAL_INT_TX;
74 if (*masked & HAL_INT_FATAL) {
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5211/
H A Dar5211_interrupts.c41 * the interrupt line, and returns both the masked and unmasked mapped ISR
45 * Returns: A hardware-abstracted bitmap of all non-masked-out
49 ar5211GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked) argument
55 *masked = 0;
59 *masked = isr & HAL_INT_COMMON;
62 *masked |= HAL_INT_FATAL;
64 *masked |= HAL_INT_RX;
66 *masked |= HAL_INT_TX;
75 *masked |= HAL_INT_FATAL;
81 if (*masked
[all...]
/haiku-fatelf/src/add-ons/kernel/debugger/qrencode/
H A Dmmask.c97 unsigned char *masked; local
99 masked = (unsigned char *)malloc(width * width);
100 if(masked == NULL) return NULL;
102 maskMakers[mask](width, frame, masked);
104 return masked;
110 unsigned char *masked; local
119 masked = (unsigned char *)malloc(width * width);
120 if(masked == NULL) return NULL;
122 maskMakers[mask](width, frame, masked);
123 MMask_writeFormatInformation(version, width, masked, mas
[all...]
H A Dmask.c153 unsigned char *masked; local
155 masked = (unsigned char *)malloc(width * width);
156 if(masked == NULL) return NULL;
158 maskMakers[mask](width, frame, masked);
160 return masked;
166 unsigned char *masked; local
173 masked = (unsigned char *)malloc(width * width);
174 if(masked == NULL) return NULL;
176 maskMakers[mask](width, frame, masked);
177 Mask_writeFormatInformation(width, masked, mas
[all...]
H A Dqrencode.c467 unsigned char *frame, *masked, *p, code, bit; local
525 masked = (unsigned char *)malloc(width * width);
526 memcpy(masked, frame, width * width);
528 masked = Mask_mask(width, frame, input->level);
530 masked = Mask_makeMask(width, frame, mask, input->level);
532 if(masked == NULL) {
535 qrcode = QRcode_new(version, width, masked);
548 unsigned char *frame, *masked, *p, code, bit; local
609 masked = MMask_mask(version, frame, input->level);
611 masked
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5212_interrupts.c47 * the interrupt line, and returns both the masked and unmasked mapped ISR
51 * Returns: A hardware-abstracted bitmap of all non-masked-out
55 ar5212GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked) argument
78 *masked = 0;
82 *masked = isr & HAL_INT_COMMON;
85 *masked |= HAL_INT_FATAL;
87 *masked |= HAL_INT_RX;
89 *masked |= HAL_INT_TX;
106 *masked |= HAL_INT_FATAL;
108 *masked |
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_interrupts.c58 * the interrupt line, and returns both the masked and unmasked mapped ISR
62 * (*masked) is cleared on initial call.
64 * Returns: A hardware-abstracted bitmap of all non-masked-out
68 ar5416GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked) argument
76 *masked = 0;
86 *masked = 0;
117 *masked = 0;
121 *masked = isr & HAL_INT_COMMON;
123 *masked |= HAL_INT_RX;
125 *masked |
[all...]
H A Dar5416.h178 extern HAL_BOOL ar5416GetPendingInterrupts(struct ath_hal *, HAL_INT *masked);
/haiku-fatelf/src/bin/gdb/opcodes/
H A Di370-dis.c62 i370_insn_t masked; local
66 masked = insn;
69 masked.i[0] >>= 16;
70 masked.i[0] &= 0xffff;
72 masked.i[0] &= opcode->mask.i[0];
73 if (masked.i[0] != opcode->opcode.i[0]) continue;
77 masked.i[1] &= opcode->mask.i[1];
78 if (masked.i[1] != opcode->opcode.i[1]) continue;
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Darmdbg.h780 Dbg_DeclSpecF const *var, Dbg_DeclSort sort, int masked,
787 p's argument <masked> is true if the variable is not visible, thanks to

Completed in 97 milliseconds