Lines Matching defs:byte
56 #define REG_CON_LASTACK BIT(5) /* 1: send NACK after last received byte */
69 #define REG_INT_BTF BIT(0) /* a byte was transmitted */
70 #define REG_INT_BRF BIT(1) /* a byte was received */
191 * @processed: byte length which has been send or received
316 * chunk, send an ACK after the last byte of the current chunk.
344 u8 byte;
353 byte = (i2c->addr & 0x7f) << 1;
355 byte = i2c->msg->buf[i2c->processed++];
357 val |= byte << (j * 8);
425 u8 byte;
443 byte = (val >> ((i % 4) * 8)) & 0xff;
444 i2c->msg->buf[i2c->processed++] = byte;