Home
last modified time | relevance | path

Searched refs:byte (Results 426 – 450 of 1847) sorted by relevance

1...<<11121314151617181920>>...74

/openbmc/qemu/tests/qemu-iotests/
H A Dcommon.rc105 local val=0 shift=0 byte
108 for byte in $(od -j"$2" -N"$3" -An -v -tu1 "$1"); do
109 val=$(( val | (byte << shift) ))
118 local val=0 byte
121 for byte in $(od -j"$2" -N"$3" -An -v -tu1 "$1"); do
122 val=$(( (val << 8) | byte ))
/openbmc/linux/sound/drivers/
H A Dserial-u16550.c358 char byte; in snd_uart16550_do_open() local
424 byte = (0 & UART_IER_RDI) /* Disable Receiver data interrupt */ in snd_uart16550_do_open()
428 byte = UART_IER_RDI /* Enable Receiver data interrupt */ in snd_uart16550_do_open()
432 byte = UART_IER_RDI /* Enable Receiver data interrupt */ in snd_uart16550_do_open()
437 byte = UART_IER_RDI /* Enable Receiver data interrupt */ in snd_uart16550_do_open()
441 outb(byte, uart->base + UART_IER); /* Interrupt enable Register */ in snd_uart16550_do_open()
579 unsigned char byte) in snd_uart16550_write_buffer() argument
583 uart->tx_buff[buff_in] = byte; in snd_uart16550_write_buffer()
/openbmc/linux/drivers/tty/serial/
H A Drp2.c403 u32 byte = readw(up->base + RP2_DATA_BYTE) | RP2_DUMMY_READ; in rp2_rx_chars() local
404 u8 ch = byte & 0xff; in rp2_rx_chars()
406 if (likely(!(byte & RP2_DATA_BYTE_EXCEPTION_MASK))) { in rp2_rx_chars()
408 uart_insert_char(&up->port, byte, 0, ch, in rp2_rx_chars()
413 if (byte & RP2_DATA_BYTE_BREAK_m) in rp2_rx_chars()
415 else if (byte & RP2_DATA_BYTE_ERR_FRAMING_m) in rp2_rx_chars()
417 else if (byte & RP2_DATA_BYTE_ERR_PARITY_m) in rp2_rx_chars()
419 uart_insert_char(&up->port, byte, in rp2_rx_chars()
/openbmc/linux/Documentation/devicetree/bindings/leds/
H A Dleds-spi-byte.txt4 - one LED is controlled by a single byte on MOSI
5 - the value of the byte gives the brightness between two values (lowest to
/openbmc/qemu/tests/tcg/cris/bare/
H A Dcheck_cmpm.s9 .byte -2,1,0x77
10 .byte 0x22
H A Dcheck_addm.s9 .byte 2,0xff,0x89
10 .byte 0x7e
H A Dcheck_subm.s9 .byte -2,1,0x77
10 .byte 0x22
H A Dcheck_cmpxm.s7 .byte 0xff
11 .byte 0x89
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dpixfmt-z16.rst19 is stored in a 16-bit word in the little endian byte order.
22 Each cell is one byte.
H A Dpixfmt-m420.rst20 The luma plane has one byte per pixel. The chroma plane contains
30 Each cell is one byte.
/openbmc/linux/arch/x86/include/asm/
H A Dinst.h139 .byte 0x40 | ((\opd1 & 8) >> 3) | ((\opd2 & 8) >> 1) | (\W << 3)
144 .byte \mod | (\opd1 & 7) | ((\opd2 & 7) << 3)
/openbmc/linux/Documentation/devicetree/bindings/
H A Dcommon-properties.txt8 byte swapping, but endianness issues show up frequently in porting drivers to
10 way of handling byte swapping across drivers.
21 BE vmlinux -> ioread32be/iowrite32be). In this case no byte swaps
/openbmc/u-boot/arch/mips/cpu/
H A Dstart.S57 and sp, t1, t0 # force 16 byte alignment
60 and sp, sp, t0 # force 16 byte alignment
66 and sp, sp, t0 # force 16 byte alignment
/openbmc/linux/drivers/hwmon/
H A Dsbrmi.c102 u8 byte; in rmi_mailbox_xfer() local
124 byte = (msg->data_in >> i * 8) & 0xff; in rmi_mailbox_xfer()
126 SBRMI_INBNDMSG1 + i, byte); in rmi_mailbox_xfer()
H A Dsht15.c276 static void sht15_send_byte(struct sht15_data *data, u8 byte) in sht15_send_byte() argument
281 sht15_send_bit(data, !!(byte & 0x80)); in sht15_send_byte()
282 byte <<= 1; in sht15_send_byte()
403 u8 byte = 0; in sht15_read_byte() local
406 byte <<= 1; in sht15_read_byte()
409 byte |= !!gpiod_get_value(data->data); in sht15_read_byte()
413 return byte; in sht15_read_byte()
/openbmc/linux/drivers/net/plip/
H A Dplip.c199 unsigned short byte; member
646 rcv->byte = 0; in plip_receive_packet()
654 &rcv->nibble, &lbuf[rcv->byte])) in plip_receive_packet()
656 } while (++rcv->byte < rcv->length.h); in plip_receive_packet()
658 rcv->checksum += lbuf[--rcv->byte]; in plip_receive_packet()
659 } while (rcv->byte); in plip_receive_packet()
832 snd->byte = 0; in plip_send_packet()
839 &snd->nibble, lbuf[snd->byte])) in plip_send_packet()
841 } while (++snd->byte < snd->length.h); in plip_send_packet()
843 snd->checksum += lbuf[--snd->byte]; in plip_send_packet()
[all …]
/openbmc/linux/lib/
H A Dsbitmap.c334 static inline void emit_byte(struct seq_file *m, unsigned int offset, u8 byte) in emit_byte() argument
343 seq_printf(m, "%02x", byte); in emit_byte()
348 u8 byte = 0; in sbitmap_bitmap_show() local
363 byte |= (word & (BIT(bits) - 1)) << byte_bits; in sbitmap_bitmap_show()
366 emit_byte(m, offset, byte); in sbitmap_bitmap_show()
367 byte = 0; in sbitmap_bitmap_show()
376 emit_byte(m, offset, byte); in sbitmap_bitmap_show()
/openbmc/linux/Documentation/usb/
H A Dusbip_protocol.rst129 The fields are in network (big endian) byte order meaning that the most significant
130 byte (MSB) is stored at the lowest address.
178 | | | | USB device, string closed with zero byte, e.g. |
184 | | | | closed with zero byte, e.g. "3-2". The unused |
221 | 0x147 | 1 | | padding byte for alignment, shall be set to zero |
267 | | | | USB device, string closed with zero byte, e.g. |
273 | | | | closed with zero byte, e.g. "3-2". The unused |
/openbmc/pldm/oem/ibm/libpldmresponder/
H A Doem_ibm_handler.cpp198 state->states[0].byte = 6; in buildAllCodeUpdateEffecterPDR()
200 state->states[0].byte = 126; in buildAllCodeUpdateEffecterPDR()
202 state->states[0].byte = 2; in buildAllCodeUpdateEffecterPDR()
249 state->states[0].byte = 6; in buildAllCodeUpdateSensorPDR()
251 state->states[0].byte = 126; in buildAllCodeUpdateSensorPDR()
308 for (int byte : requestMsg) in sendEventToHost() local
310 tempStream << std::setfill('0') << std::setw(2) << std::hex << byte in sendEventToHost()
/openbmc/linux/arch/m68k/mac/
H A Dmac_penguin.S2 .byte \
/openbmc/linux/drivers/i2c/
H A Di2c-core-smbus.c110 return (status < 0) ? status : data.byte; in i2c_smbus_read_byte()
145 return (status < 0) ? status : data.byte; in i2c_smbus_read_byte_data()
162 data.byte = value; in i2c_smbus_write_byte_data()
375 msgbuf0[1] = data->byte; in i2c_smbus_xfer_emulated()
488 data->byte = msgbuf0[0]; in i2c_smbus_xfer_emulated()
491 data->byte = msgbuf1[0]; in i2c_smbus_xfer_emulated()
/openbmc/linux/Documentation/devicetree/bindings/misc/
H A Difm-csi.txt17 - ifm,csi-byte-swap: if this property is present, the byte swapping on
/openbmc/u-boot/drivers/w1/
H A Dw1-gpio.c75 static void w1_gpio_write_byte(struct udevice *dev, u8 byte) in w1_gpio_write_byte() argument
80 w1_gpio_write_bit(dev, (byte >> i) & 0x1); in w1_gpio_write_byte()
/openbmc/linux/Documentation/netlink/specs/
H A Dfou.yaml35 byte-order: big-endian
67 byte-order: big-endian
/openbmc/linux/arch/arm/crypto/
H A Dcrct10dif-ce-core.S378 .byte 0x0, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87
379 .byte 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f
380 .byte 0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
381 .byte 0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe , 0x0

1...<<11121314151617181920>>...74