tag | line | file | source code |
BITS | 11 | arch/i386/boot/compressed/lzw.h | #ifndef BITS |
BITS | 325 | drivers/scsi/aha152x.h | #define SETBITS(PORT, BITS) \ |
BITS | 326 | drivers/scsi/aha152x.h | outb( (inb(PORT) | (BITS)), (PORT) ) |
BITS | 328 | drivers/scsi/aha152x.h | #define CLRBITS(PORT, BITS) \ |
BITS | 329 | drivers/scsi/aha152x.h | outb( (inb(PORT) & ~(BITS)), (PORT) ) |
BITS | 334 | drivers/scsi/aha152x.h | #define TESTHI(PORT, BITS) \ |
BITS | 335 | drivers/scsi/aha152x.h | ((inb(PORT) & (BITS)) == BITS) |
BITS | 337 | drivers/scsi/aha152x.h | #define TESTLO(PORT, BITS) \ |
BITS | 338 | drivers/scsi/aha152x.h | ((inb(PORT) & (BITS)) == 0) |