Lines Matching refs:uint8
211 uint8 txdh; /* tx to host */
212 uint8 txd11; /* tx to d11 */
213 uint8 enq; /* waiting in q */
214 uint8 rxdh; /* rx from host */
215 uint8 rxd11; /* rx from d11 */
216 uint8 rxfill; /* dma_rxfill */
217 uint8 idle; /* avail in pool */
230 uint8 cbtoggle;
231 uint8 cbcnt;
232 uint8 ecbcnt;
240 uint8 dbg_cbcnt;
348 extern uint8 *pktdataoffset(osl_t *osh, void *p, uint offset);
666 #define setbit(a, i) (((uint8 *)a)[(i) / NBBY] |= 1 << ((i) % NBBY))
667 #define clrbit(a, i) (((uint8 *)a)[(i) / NBBY] &= ~(1 << ((i) % NBBY)))
668 #define isset(a, i) (((const uint8 *)a)[(i) / NBBY] & (1 << ((i) % NBBY)))
669 #define isclr(a, i) ((((const uint8 *)a)[(i) / NBBY] & (1 << ((i) % NBBY))) == 0)
748 uint8 id;
749 uint8 len;
750 uint8 data[1];
762 xor_128bit_block(const uint8 *src1, const uint8 *src2, uint8 *dst) in xor_128bit_block()
785 extern uint8 hndcrc8(uint8 *p, uint nbytes, uint8 crc);
786 extern uint16 hndcrc16(uint8 *p, uint nbytes, uint16 crc);
787 extern uint32 hndcrc32(uint8 *p, uint nbytes, uint32 crc);
833 extern void bcm_bprhex(struct bcmstrbuf *b, const char *msg, bool newline, uint8 *buf, int len);
835 extern void bcm_inc_bytes(uchar *num, int num_bytes, uint8 amount);
836 extern int bcm_cmp_bytes(const uchar *arg1, const uchar *arg2, uint8 nbytes);
842 extern uint bcm_bitcount(uint8 *bitmap, uint bytelength);
847 extern uint16 bcm_qdbm_to_mw(uint8 qdbm);
848 extern uint8 bcm_mw_to_qdbm(uint16 mw);
853 const char *voui, uint8 *type, int type_len);