Lines Matching defs:value
11 int i, value, index = 0;
35 value = 0;
96 value = (value << 4) | (c - '0'); /*ASCII assumed*/
98 value = (value << 4) | (c - 'A'+10); /*ASCII assumed*/
100 value = (value << 4) | (c - 'a'+10); /*ASCII assumed*/
102 if ((cport != 'Z') && (cport != 'Y')) outb(port,value&0xFF);
105 printf("%cR%X: 0x%X\n", cport, value & 0xFF,
114 printf("%cR%X: 0x%X -> 0x%X\n", cport, value & 0xFF,
115 inb(port+1)&0xFF, (value&0xFF00)>>8);
116 outw(port, value);
120 printf("MSR: 0x%X -> 0x%X\n", inb(port1)&0xFF, value&0xFF);
122 printf("FCR: 0x%X -> 0x%X\n", inb(port1)&0xFF, value&0xFF);
123 outb(port, value & 0xFF);