Lines Matching refs:pB
513 #define HAS_INPUT(pB) !(INB(pB->i2eStatus) & ST_IN_EMPTY) argument
514 #define HAS_NO_INPUT(pB) (INB(pB->i2eStatus) & ST_IN_EMPTY) argument
518 #define BYTE_FROM(pB) (unsigned char)INB(pB->i2eData) argument
519 #define WORD_FROM(pB) (unsigned short)INW(pB->i2eData) argument
524 #define HAS_OUTROOM(pB) !(INB(pB->i2eStatus) & ST_OUT_FULL) argument
525 #define HAS_NO_OUTROOM(pB) (INB(pB->i2eStatus) & ST_OUT_FULL) argument
531 #define BYTE_TO(pB, c) OUTB(pB->i2eData,(c)) argument
536 #define WORD_TO(pB, c) OUTW(pB->i2eData,(c)) argument
541 #define HAS_MAIL(pB) (INB(pB->i2eStatus) & ST_IN_MAIL) argument
543 #define UPDATE_FIFO_ROOM(pB) (pB)->i2eFifoRemains=(pB)->i2eFifoSize argument
614 #define COMPLETE(pB,code) \ argument
616 pB->i2eError = code; \