Home
last modified time | relevance | path

Searched refs:byte (Results 351 – 375 of 1847) sorted by relevance

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

/openbmc/linux/drivers/s390/cio/
H A Dchp.h36 int byte = num >> 3; in chp_test_bit() local
39 return (bitmap[byte] & mask) ? 1 : 0; in chp_test_bit()
/openbmc/linux/arch/x86/boot/
H A Dbioscall.S46 .byte 0xcd /* INT opcode */
47 3: .byte 0
/openbmc/linux/sound/firewire/fireface/
H A Dff-protocol-latter.c401 u8 byte[3]; in latter_handle_midi_msg() local
427 byte[0] = (data & 0x0000ff00) >> 8; in latter_handle_midi_msg()
428 byte[1] = (data & 0x00ff0000) >> 16; in latter_handle_midi_msg()
429 byte[2] = (data & 0xff000000) >> 24; in latter_handle_midi_msg()
433 snd_rawmidi_receive(substream, byte, len); in latter_handle_midi_msg()
/openbmc/u-boot/lib/efi_selftest/
H A Defi_selftest_console.c26 u8 byte; in mac() local
32 byte = p[i]; in mac()
34 c = (byte >> j) & 0x0f; in mac()
/openbmc/linux/scripts/
H A Ddecodecode61 1) type=byte ;;
62 2) type=2byte ;;
63 4) type=4byte ;;
/openbmc/linux/arch/loongarch/include/asm/
H A Dalternative-asm.h19 .byte \orig_len
20 .byte \alt_len
/openbmc/linux/Documentation/filesystems/
H A Dromfs.rst51 byte boundaries for fast access. The minimum space a file will take
54 the 16 byte padding for the name and the contents, also 16+14+15 = 45
72 : : padded to 16 byte boundary.
77 Every multi byte value (32 bit words, I'll use the longwords term from
91 must begin on a 16 byte boundary::
105 : : padded to 16 byte boundary
110 Since the file headers begin always at a 16 byte boundary, the lowest
146 aligned to 16 byte boundaries, but most hardware devices and the block
149 padded to an 1024 byte boundary.
177 - Since the files are only required to have alignment on a 16 byte
/openbmc/linux/drivers/net/ethernet/smsc/
H A Dsmc9194.c274 static void print_packet( byte *, int );
581 byte packet_no; in smc_hardware_send_packet()
585 byte * buf; in smc_hardware_send_packet()
769 byte int_status; in smc_findirq()
1032 static void print_packet( byte * buf, int length ) in print_packet()
1163 byte * data; in smc_rcv()
1251 byte saved_packet; in smc_tx()
1252 byte packet_no; in smc_tx()
1317 byte status; in smc_interrupt()
1319 byte mask; in smc_interrupt()
/openbmc/phosphor-dbus-interfaces/yaml/com/google/gbmc/
H A DHoth.interface.yaml13 type: array[byte]
18 type: array[byte]
35 type: array[byte]
40 type: array[byte]
56 type: array[byte]
77 type: array[byte]
90 type: array[byte]
/openbmc/linux/lib/raid6/
H A Daltivec.uc47 * The SHLBYTE() operation shifts each byte left by 1, *not*
48 * rolling over into the next byte
56 * The MASK() operation returns 0xFF in any byte for which the high
57 * bit is 1, 0x00 for any byte for which the high bit is 0.
/openbmc/linux/Documentation/devicetree/bindings/eeprom/
H A Dat25.yaml65 byte, before the address byte.
81 # Deprecated: at25,byte-len, at25,addr-mode, at25,page-size
82 at25,byte-len:
/openbmc/linux/drivers/input/serio/
H A Dmaceps2.c75 unsigned long byte; in maceps2_interrupt() local
78 byte = port->rx; in maceps2_interrupt()
79 serio_interrupt(dev, byte & 0xff, 0); in maceps2_interrupt()
/openbmc/qemu/include/qemu/
H A Drange.h204 uint64_t byte) in range_covers_byte() argument
206 return offset <= byte && byte <= range_get_last(offset, len); in range_covers_byte()
/openbmc/linux/arch/arm64/kvm/
H A Dmmio.c17 u8 byte; in kvm_mmio_write_buf() member
25 tmp.byte = data; in kvm_mmio_write_buf()
26 datap = &tmp.byte; in kvm_mmio_write_buf()
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dpixfmt-cnf4.rst19 Every two consecutive pixels are packed into a single byte.
20 Bits 0-3 of byte n refer to confidence value of depth pixel 2*n,
/openbmc/phosphor-power/phosphor-regulators/docs/config_file/
H A Di2c_write_byte.md5 Writes a byte to a device register. Communicates with the device directly using
14 …and surrounded by double quotes. Specifies which bits to write within the byte value. Only the bit…
/openbmc/linux/arch/alpha/lib/
H A Dstrncpy.S38 or $4, $27, $4 # written byte and the last byte in COUNT
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/
H A DCVE-2019-7637.patch52 /* Surface should be 4-byte aligned for speed */
55 + for (Uint8 byte = surface->format->BytesPerPixel; byte; byte--) {
82 - pitch = (pitch + 3) & ~3; /* 4-byte aligning */
84 + /* 4-byte aligning */
/openbmc/qemu/target/sparc/
H A Dvis_helper.c344 int byte; in helper_fpack16() local
346 for (byte = 0; byte < 4; byte++) { in helper_fpack16()
348 int16_t src = rs2 >> (byte * 16); in helper_fpack16()
355 ret |= val << (8 * byte); in helper_fpack16()
/openbmc/linux/drivers/spi/
H A Dspi-sun4i.c128 u8 byte; in sun4i_spi_drain_fifo() local
139 byte = readb(sspi->base_addr + SUN4I_RXDATA_REG); in sun4i_spi_drain_fifo()
141 *sspi->rx_buf++ = byte; in sun4i_spi_drain_fifo()
148 u8 byte; in sun4i_spi_fill_fifo() local
156 byte = sspi->tx_buf ? *sspi->tx_buf++ : 0; in sun4i_spi_fill_fifo()
157 writeb(byte, sspi->base_addr + SUN4I_TXDATA_REG); in sun4i_spi_fill_fifo()
/openbmc/qemu/docs/specs/
H A Drocker.txt41 o TLV values in network-byte-order are designated with (N).
88 byte registers with one 4-byte access, and 8 byte registers with either two
89 4-byte accesses or a single 8-byte access. In the case of two 4-byte accesses,
142 [1:0] Rsvd (4 byte alignment
173 byte boundary. Each descriptor ring will have these registers:
217 DMA_DESC_BUF_ADDR 8 Phys addr of desc payload, 8-byte
236 Descriptor payload buffer is 8-byte aligned and TLVs are 8-byte aligned. The
237 value within a TLV is also 8-byte aligned. The (packed, 8 byte) TLV header is:
247 8 byte aligned.
313 are network-byte-order since they're matched directly, byte-by-byte, against
[all …]
/openbmc/linux/arch/arm64/kernel/
H A Defi-header.S44 .byte 0x02 // MajorLinkerVersion
45 .byte 0x14 // MinorLinkerVersion
/openbmc/linux/Documentation/virt/kvm/devices/
H A Dmpic.rst27 "attr" is the byte offset into the MPIC register space. Accesses
28 must be 4-byte aligned.
42 byte offset of the relevant IVPR from EIVPR0, divided by 32.
/openbmc/u-boot/drivers/w1/
H A Dmxc_w1.c104 static void mxc_w1_write_byte(struct udevice *dev, u8 byte) in mxc_w1_write_byte() argument
114 mxc_w1_touch_bit(pdata, (byte >> i) & 0x1); in mxc_w1_write_byte()
120 writew(byte, &regs->tx_rx); in mxc_w1_write_byte()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/iptraf/
H A Diptraf-ng_1.2.1.bb6 data like TCP connection packet and byte counts, interface statistics \
8 packet and byte counts. IPTraf-ng features include an IP traffic monitor \
9 which shows TCP flag information, packet and byte counts, ICMP \

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