Searched refs:byte (Results 1 - 11 of 11) sorted by relevance

/include/linux/
H A Dks0108.h28 /* Write a byte to the data port */
29 extern void ks0108_writedata(unsigned char byte);
31 /* Write a byte to the control port */
32 extern void ks0108_writecontrol(unsigned char byte);
H A Dbitrev.h8 static inline u8 bitrev8(u8 byte) argument
10 return byte_rev_table[byte];
H A Dlibps2.h25 #define PS2_FLAG_CMD1 4 /* Waiting for the first byte of command response */
45 int ps2_sendbyte(struct ps2dev *ps2dev, unsigned char byte, int timeout);
H A Dkernel.h476 static inline char *hex_byte_pack(char *buf, u8 byte) argument
478 *buf++ = hex_asc_hi(byte);
479 *buf++ = hex_asc_lo(byte);
487 static inline char *hex_byte_pack_upper(char *buf, u8 byte) argument
489 *buf++ = hex_asc_upper_hi(byte);
490 *buf++ = hex_asc_upper_lo(byte);
H A Dpci.h39 * in a single byte as follows:
266 u8 revision; /* PCI revision, low byte of class word */
1185 byte boundaries */
1187 strategy_parameter byte boundaries */
1341 #define _PCI_NOP_ALL(o, x) _PCI_NOP(o, byte, u8 x) \
/include/asm-generic/
H A Dword-at-a-time.h31 long byte = 0; local
36 byte = 4;
41 byte += 2;
42 return (mask >> 8) ? byte : byte + 1;
/include/net/irda/
H A Dwrapper.h56 iobuff_t *buf, __u8 byte);
H A Ddiscovery.h45 * byte[1] and LSB in byte[0]. A big endian machine stores MSB in byte[0]
46 * and LSB in byte[1].
55 __u8 byte[2]; member in union:__anon1222
/include/uapi/linux/
H A Di2c.h43 * 32 bytes in addition to the initial length byte sent by the
56 * versus write. Then follow all the data bytes, possibly including a byte
78 #define I2C_M_RECV_LEN 0x0400 /* length will be first received byte */
102 #define I2C_FUNC_SMBUS_WRITE_I2C_BLOCK 0x08000000 /* w/ 1-byte reg. addr. */
129 __u8 byte; member in union:i2c_smbus_data
H A Dsoundcard.h198 # error "could not determine byte order"
224 * The least significant byte has the same format than the GUS .PAT
315 * are records of 4 or 8 bytes. The first byte defines the size.
322 * 8 byte events also. If you receive any event having first byte >= 128,
323 * it's a 8 byte event.
328 * There is also a 8 byte version of most of the 4 byte events. The
329 * 8 byte one is recommended.
979 * The 4 most significant bits of byte
[all...]
/include/linux/mtd/
H A Dnand.h532 * @read_byte: [REPLACEABLE] read one byte from the chip
534 * @write_byte: [REPLACEABLE] write a single byte to the chip on the
636 void (*write_byte)(struct mtd_info *mtd, uint8_t byte);
731 * A helper for defining older NAND chips where the second ID byte fully
761 * @dev_id: the device ID (the second byte of the full chip ID array)
870 * @read_byte: platform specific function to read one byte from chip

Completed in 397 milliseconds