Lines Matching refs:byte

242 	unsigned int byte;
253 byte = counter_number << 6;
254 byte |= 0x30; /* load low then high byte */
255 byte |= (mode << 1); /* set counter mode */
256 outb(byte, base_address + (i8254_control_reg << regshift));
257 byte = count & 0xff; /* lsb of counter value */
258 outb(byte, base_address + (counter_number << regshift));
259 byte = (count >> 8) & 0xff; /* msb of counter value */
260 outb(byte, base_address + (counter_number << regshift));
269 unsigned int byte;
280 byte = counter_number << 6;
281 byte |= 0x30; /* load low then high byte */
282 byte |= (mode << 1); /* set counter mode */
283 writeb(byte, base_address + (i8254_control_reg << regshift));
284 byte = count & 0xff; /* lsb of counter value */
285 writeb(byte, base_address + (counter_number << regshift));
286 byte = (count >> 8) & 0xff; /* msb of counter value */
287 writeb(byte, base_address + (counter_number << regshift));
296 unsigned int byte;
303 byte = counter_number << 6;
304 outb(byte, base_address + (i8254_control_reg << regshift));
317 unsigned int byte;
324 byte = counter_number << 6;
325 writeb(byte, base_address + (i8254_control_reg << regshift));
340 unsigned int byte;
345 byte = count & 0xff; /* lsb of counter value */
346 outb(byte, base_address + (counter_number << regshift));
347 byte = (count >> 8) & 0xff; /* msb of counter value */
348 outb(byte, base_address + (counter_number << regshift));
356 unsigned int byte;
361 byte = count & 0xff; /* lsb of counter value */
362 writeb(byte, base_address + (counter_number << regshift));
363 byte = (count >> 8) & 0xff; /* msb of counter value */
364 writeb(byte, base_address + (counter_number << regshift));
378 unsigned int byte;
385 byte = counter_number << 6;
386 byte |= 0x30; /* load low then high byte */
387 byte |= mode; /* set counter mode and BCD|binary */
388 outb(byte, base_address + (i8254_control_reg << regshift));
398 unsigned int byte;
405 byte = counter_number << 6;
406 byte |= 0x30; /* load low then high byte */
407 byte |= mode; /* set counter mode and BCD|binary */
408 writeb(byte, base_address + (i8254_control_reg << regshift));