Lines Matching defs:byte
60 static int imcsmb_readb(device_t dev, u_char slave, char cmd, char *byte);
62 static int imcsmb_writeb(device_t dev, u_char slave, char cmd, char byte);
187 * @param[out] byte
188 * The byte which was read.
191 imcsmb_readb(device_t dev, u_char slave, char cmd, char *byte)
194 return (imcsmb_transfer(dev, slave, cmd, byte, FALSE, FALSE));
235 * @param[in] byte
236 * The byte to write.
239 imcsmb_writeb(device_t dev, u_char slave, char cmd, char byte)
242 return (imcsmb_transfer(dev, slave, cmd, &byte, FALSE, TRUE));
307 uint8_t *byte;
311 byte = data;
313 lbyte = *byte;
382 * the temperature sensors are I2C. Thus, byte-swap the
387 /* For byte operations, the data goes in the LSB, and
475 * above, byte-swap.
483 *byte = lbyte;