Home
last modified time | relevance | path

Searched refs:byte (Results 651 – 675 of 1847) sorted by relevance

1...<<21222324252627282930>>...74

/openbmc/linux/drivers/rtc/
H A Drtc-ds2404.c67 static void ds2404_write_byte(struct ds2404 *chip, u8 byte) in ds2404_write_byte() argument
73 gpiod_set_value(chip->dq_gpiod, byte & (1 << i)); in ds2404_write_byte()
/openbmc/linux/drivers/i2c/muxes/
H A Di2c-mux-pca9541.c102 union i2c_smbus_data data = { .byte = val }; in pca9541_reg_write()
123 return ret ?: data.byte; in pca9541_reg_read()
/openbmc/linux/Documentation/virt/kvm/x86/
H A Dtimekeeping.rst219 00h byte Current second (BCD)
220 01h byte Seconds alarm (BCD)
221 02h byte Current minute (BCD)
222 03h byte Minutes alarm (BCD)
223 04h byte Current hour (BCD)
224 05h byte Hours alarm (BCD)
227 08h byte Current month (BCD)
228 09h byte Current year (BCD)
229 0Ah byte Register A
248 0Bh byte Register B
[all …]
/openbmc/u-boot/arch/x86/include/asm/arch-ivybridge/
H A Dpei_data.h22 typedef asmlinkage void (*tx_byte_func)(unsigned char byte);
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dpixfmt-sdr-cs08.rst21 Each cell is one byte.
H A Dpixfmt-sdr-cu08.rst21 Each cell is one byte.
H A Dpixfmt-reserved.rst192 each byte are used, the other bits are set to 0.
198 each byte are used, the other bits are set to 0.
208 UYVY image. Each entry is a 4-byte unsigned integer in big endian
215 The second plane, at an offset of 4084 bytes, contains a 4-byte
217 followed by a 4-byte value indicating size of the pointer array.
H A Dpixfmt-packed-yuv.rst15 - In all the tables that follow, bit 7 is the most significant bit in a byte.
30 seen in a 16-bit word, which is then stored in memory in little endian byte
159 format stores a pixel with Cr\ :sub:`7-0` in the first byte, Cb\ :sub:`7-0` in
160 the second byte and Y'\ :sub:`7-0` in the third byte.
H A Dpixfmt-uv8.rst19 Each cell is one byte.
/openbmc/linux/arch/s390/include/asm/
H A Dalternative-asm.h17 .byte \orig_end - \orig_start
/openbmc/linux/Documentation/networking/
H A Dmctp.rst51 specified with a ``sockaddr`` type, with a single-byte endpoint address:
156 The application must provide the message type byte as the first byte of the
159 buffer, and the most-significant bit of the message type byte must be 1.
205 The first byte of the message buffer will contain the message type byte. If an
/openbmc/linux/drivers/spi/
H A Dspi-meson-spicc.c222 u8 byte; in meson_spicc_pull_data() local
225 byte = *spicc->tx_buf++; in meson_spicc_pull_data()
226 data |= (byte & 0xff) << byte_shift; in meson_spicc_pull_data()
239 u8 byte; in meson_spicc_push_data() local
242 byte = (data >> byte_shift) & 0xff; in meson_spicc_push_data()
243 *spicc->rx_buf++ = byte; in meson_spicc_push_data()
/openbmc/linux/Documentation/staging/
H A Dcrc32.rst27 to decide on the endianness of the bits within each byte. To get
113 bulk of a message byte-at-a-time and adding bit-at-a-time processing
117 the byte-at-a-time table method, popularized by Dilip V. Sarwate,
122 in the correct multiple to subtract, we can shift a byte at a time.
127 (The table entries are simply the CRC-32 of the given one-byte messages.)
148 to cancel out the corresponding byte. The tables are different because the
H A Dstatic-keys.rst186 struct jump_entry table must be at least 4-byte aligned because the
274 to a 5 byte atomic no-op instruction at boot-time.) Thus, the disabled jump
277 6 (mov) + 2 (test) + 2 (jne) = 10 - 5 (5 byte jump 0) = 5 addition bytes.
282 footprint. We can in fact improve this even further, since the 5-byte no-op
283 really can be a 2-byte no-op since we can reach the branch with a 2-byte jmp.
/openbmc/linux/drivers/i2c/busses/
H A Di2c-s3c2410.c382 unsigned char byte; in i2c_s3c_irq_nextbyte() local
448 byte = i2c->msg->buf[i2c->msg_ptr++]; in i2c_s3c_irq_nextbyte()
449 writeb(byte, i2c->regs + S3C2410_IICDS); in i2c_s3c_irq_nextbyte()
503 byte = readb(i2c->regs + S3C2410_IICDS); in i2c_s3c_irq_nextbyte()
504 i2c->msg->buf[i2c->msg_ptr++] = byte; in i2c_s3c_irq_nextbyte()
508 i2c->msg->len += byte; in i2c_s3c_irq_nextbyte()
/openbmc/linux/Documentation/driver-api/mtd/
H A Dnand_ecc.rst45 byte 0: bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 rp0 rp2 rp4 ... rp14
46 byte 1: bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 rp1 rp2 rp4 ... rp14
47 byte 2: bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 rp0 rp3 rp4 ... rp14
48 byte 3: bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 rp1 rp3 rp4 ... rp14
49 byte 4: bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 rp0 rp2 rp5 ... rp14
51 byte 254: bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 rp0 rp3 rp5 ... rp15
52 byte 255: bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 rp1 rp3 rp5 ... rp15
294 Of course this means some modification as the row parity is byte by
295 byte. A quick analysis:
304 And note that care must taken wrt byte ordering. The way bytes are
[all …]
/openbmc/u-boot/drivers/net/
H A Dmvpp2.c1182 u8 byte[MVPP2_PRS_TCAM_WORDS * 4]; member
1187 u8 byte[MVPP2_PRS_SRAM_WORDS * 4]; member
1484 pe->tcam.byte[MVPP2_PRS_TCAM_LU_BYTE] = lu; in mvpp2_prs_tcam_lu_set()
1495 pe->tcam.byte[enable_off] &= ~(1 << port); in mvpp2_prs_tcam_port_set()
1497 pe->tcam.byte[enable_off] |= 1 << port; in mvpp2_prs_tcam_port_set()
1507 pe->tcam.byte[MVPP2_PRS_TCAM_PORT_BYTE] = 0; in mvpp2_prs_tcam_port_map_set()
1508 pe->tcam.byte[enable_off] &= ~port_mask; in mvpp2_prs_tcam_port_map_set()
1522 unsigned int offs, unsigned char byte, in mvpp2_prs_tcam_data_byte_set() argument
1525 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)] = byte; in mvpp2_prs_tcam_data_byte_set()
1531 unsigned int offs, unsigned char *byte, in mvpp2_prs_tcam_data_byte_get() argument
[all …]
/openbmc/linux/drivers/staging/greybus/Documentation/
H A Dsysfs-bus-greybus21 A Module M on the bus N, where M is the 1-byte interface
53 1-byte interface ID.
174 A bundle B on the Interface I, B is replaced by a 1-byte
224 The AP interface ID, a 1-byte non-zero integer which
234 The Endo ID, which is a 2-byte hexadecimal value
/openbmc/qemu/target/hexagon/imported/
H A Dsubinsns.idef66 …(Rs16+#u4:0)",ATTRIBS(A_MEMSIZE_1B,A_LOAD,A_SUBINSN,A_REGWRSIZE_1B),"load byte", {fEA_RI(RsV,uiV);…
70 Q6INSN(SL2_loadrb_io, "Rd16=memb(Rs16+#u3:0)", ATTRIBS(A_MEMSIZE_1B,A_LOAD,A_SUBINSN),"load byte",…
138 … "memb(Rs16+#u4:0)=Rt16", ATTRIBS(A_MEMSIZE_1B,A_STORE,A_SUBINSN), "store byte", {fEA_RI(RsV,uiV);…
143 …Rs16+#u4:0)=#0", ATTRIBS(A_MEMSIZE_1B,A_STORE,A_SUBINSN,A_ROPS_2), "store byte", {fEA_RI(RsV,uiV);…
145 …Rs16+#u4:0)=#1", ATTRIBS(A_MEMSIZE_1B,A_STORE,A_SUBINSN,A_ROPS_2), "store byte", {fEA_RI(RsV,uiV);…
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-class-net-janz-ican318 Read-only: 32 byte string identification of the ICAN3 module
/openbmc/qemu/tests/multiboot/
H A Daout_kludge.S137 .byte 0xa5
/openbmc/qemu/tests/tcg/cris/bare/
H A Dcheck_movsm.s11 .byte 5,-11
/openbmc/google-ipmi-sys/bifurcation/
H A Dbifurcation_static.cpp67 ex.byte); in getBifurcation()
/openbmc/linux/tools/testing/selftests/powerpc/copyloops/asm/
H A Dppc_asm.h36 .8byte x, y; \
/openbmc/linux/Documentation/bpf/standardization/
H A Dinstruction-set.rst131 Note that the contents of multi-byte fields ('imm' and 'offset') are
132 stored using big-endian byte ordering in big-endian BPF and
133 little-endian byte ordering in little-endian BPF.
243 BPF_END 0xd0 0 byte swap operations (see `Byte swap instructions`_ below)
298 The byte swap instructions use instruction classes of ``BPF_ALU`` and ``BPF_ALU64``
301 The byte swap instructions operate on the destination register
305 select what byte order the operation converts from or to. For
312 BPF_ALU BPF_TO_LE 0x00 convert between host byte order and little endian
313 BPF_ALU BPF_TO_BE 0x08 convert between host byte order and big endian
314 BPF_ALU64 Reserved 0x00 do byte swap unconditionally
[all …]

1...<<21222324252627282930>>...74