Home
last modified time | relevance | path

Searched refs:byte (Results 301 – 325 of 1847) sorted by relevance

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

/openbmc/linux/drivers/misc/eeprom/
H A Deeprom_93cx6.c237 void eeprom_93cx6_readb(struct eeprom_93cx6 *eeprom, const u8 byte, in eeprom_93cx6_readb() argument
251 command = (PCI_EEPROM_READ_OPCODE << (eeprom->width + 1)) | byte; in eeprom_93cx6_readb()
278 void eeprom_93cx6_multireadb(struct eeprom_93cx6 *eeprom, const u8 byte, in eeprom_93cx6_multireadb() argument
284 eeprom_93cx6_readb(eeprom, byte + i, &data[i]); in eeprom_93cx6_multireadb()
/openbmc/linux/arch/powerpc/platforms/pasemi/
H A Dpci.c63 int byte; in workaround_5945() local
72 byte = offset & 0x3; in workaround_5945()
85 *val = (tmp >> (8*byte)) & 0xff; in workaround_5945()
88 if (byte == 0) in workaround_5945()
/openbmc/linux/Documentation/devicetree/bindings/dma/
H A Dintel,ldma.yaml64 intel,dma-byte-en:
67 DMA byte enable is only valid for DMA write(RX).
103 intel,dma-byte-en;
114 intel,dma-byte-en;
/openbmc/linux/arch/arm/boot/dts/intel/ixp/
H A Dintel-ixp4xx-reference-design.dtsi36 * Philips PCF8582C-2T/03 512byte I2C EEPROM
56 * command byte = 1 and address byte = 2 from the device
68 intel,ixp4xx-eb-byte-access-on-halfword = <0>;
72 intel,ixp4xx-eb-byte-access = <1>;
/openbmc/linux/include/linux/
H A Deeprom_93cx6.h66 const u8 byte, u8 *data);
68 const u8 byte, u8 *data, const u16 bytes);
/openbmc/linux/arch/x86/math-emu/
H A Dfpu_entry.c549 u_char byte; in valid_prefix() local
557 FPU_get_user(byte, ip); in valid_prefix()
561 switch (byte) { in valid_prefix()
601 FPU_get_user(byte, ip); in valid_prefix()
605 *Byte = byte; in valid_prefix()
608 if ((byte & 0xf8) == 0xd8) { in valid_prefix()
609 *Byte = byte; in valid_prefix()
615 *Byte = byte; /* Needed for error message. */ in valid_prefix()
/openbmc/linux/arch/x86/virt/vmx/tdx/
H A Dtdxcall.S8 #define tdcall .byte 0x66,0x0f,0x01,0xcc
9 #define seamcall .byte 0x66,0x0f,0x01,0xcf
/openbmc/qemu/tests/tcg/cris/bare/
H A Dcheck_addxm.s7 .byte 0xff
11 .byte 0x89
13 .byte 0xff
/openbmc/linux/include/xen/interface/io/
H A Dnetif.h298 uint8_t byte = buf[bufi]; in xen_netif_toeplitz_hash() local
302 if (byte & 0x80) in xen_netif_toeplitz_hash()
305 byte <<= 1; in xen_netif_toeplitz_hash()
/openbmc/estoraged/src/erase/
H A Dpattern.cpp35 std::array<std::byte, blockSize> randArr{}; in writePattern()
83 std::array<std::byte, blockSize> randArr{}; in verifyPattern()
84 std::array<std::byte, blockSize> readArr{}; in verifyPattern()
/openbmc/linux/sound/isa/wavefront/
H A Dwavefront_midi.c83 write_data (snd_wavefront_midi_t *midi, unsigned char byte) in write_data() argument
86 outb (byte, midi->mpu_data_port); in write_data()
413 unsigned char byte; in snd_wavefront_midi_interrupt() local
426 byte = read_data (midi); in snd_wavefront_midi_interrupt()
429 if (byte == WF_EXTERNAL_SWITCH) { in snd_wavefront_midi_interrupt()
432 } else if (byte == WF_INTERNAL_SWITCH) { in snd_wavefront_midi_interrupt()
446 snd_rawmidi_receive(substream, &byte, 1); in snd_wavefront_midi_interrupt()
/openbmc/linux/drivers/vfio/pci/
H A Dvfio_pci_config.c1309 u8 byte; in vfio_cap_len() local
1336 return byte; in vfio_cap_len()
1359 return (byte & HT_3BIT_CAP_MASK) ? in vfio_cap_len()
1366 byte &= PCI_SATA_REGS_MASK; in vfio_cap_len()
1367 if (byte == PCI_SATA_REGS_INLINE) in vfio_cap_len()
1382 u8 byte; in vfio_ext_cap_len() local
1402 if (byte & PCI_ACS_EC) { in vfio_ext_cap_len()
1407 &byte); in vfio_ext_cap_len()
1411 bits = byte ? round_up(byte, 32) : 256; in vfio_ext_cap_len()
1421 byte &= PCI_REBAR_CTRL_NBAR_MASK; in vfio_ext_cap_len()
[all …]
/openbmc/qemu/hw/ssi/
H A Dimx_spi.c192 uint8_t byte = tx >> (tx_burst - 8); in imx_spi_flush_txfifo() local
194 DPRINTF("writing 0x%02x\n", (uint32_t)byte); in imx_spi_flush_txfifo()
197 byte = ssi_transfer(s->bus, byte); in imx_spi_flush_txfifo()
199 DPRINTF("0x%02x read\n", (uint32_t)byte); in imx_spi_flush_txfifo()
201 rx = (rx << 8) | byte; in imx_spi_flush_txfifo()
/openbmc/linux/Documentation/i2c/
H A Dslave-testunit-backend.rst30 0x01 DATAL - configuration byte 1 for the test
31 0x02 DATAH - configuration byte 2 for the test
63 DATAL - low byte of the status word to send
64 DATAH - high byte of the status word to send
73 DATAL - must be '1', i.e. one further byte will be written
78 specification. The one data byte written specifies how many bytes will be sent
/openbmc/qemu/hw/acpi/
H A Dcpu_hotplug.c182 Aml *byte = aml_local(2); /* Local2 = last read byte from bitmap */ in build_legacy_cpu_hotplug_aml() local
188 aml_append(method, aml_store(zero, byte)); in build_legacy_cpu_hotplug_aml()
199 aml_append(if_ctx, aml_shiftright(byte, one, byte)); in build_legacy_cpu_hotplug_aml()
207 aml_shiftright(idx, aml_int(3), NULL))), byte)); in build_legacy_cpu_hotplug_aml()
211 aml_append(while_ctx, aml_store(aml_and(byte, one, NULL), status)); in build_legacy_cpu_hotplug_aml()
/openbmc/linux/drivers/misc/lkdtm/
H A Dbugs.c472 volatile unsigned char byte; in lkdtm_STACK_GUARD_PAGE_LEADING() local
476 byte = *ptr; in lkdtm_STACK_GUARD_PAGE_LEADING()
478 pr_err("FAIL: accessed page before stack! (byte: %x)\n", byte); in lkdtm_STACK_GUARD_PAGE_LEADING()
486 volatile unsigned char byte; in lkdtm_STACK_GUARD_PAGE_TRAILING() local
490 byte = *ptr; in lkdtm_STACK_GUARD_PAGE_TRAILING()
492 pr_err("FAIL: accessed page after stack! (byte: %x)\n", byte); in lkdtm_STACK_GUARD_PAGE_TRAILING()
/openbmc/linux/arch/powerpc/perf/
H A Dpower6-pmu.c140 int bit, byte, unit; in power6_marked_instr_event() local
166 byte = (event >> PM_BYTE_SH) & PM_BYTE_MSK; in power6_marked_instr_event()
169 return (mask >> (byte * 8 + bit)) & 1; in power6_marked_instr_event()
272 int pmc, byte, sh, subunit; in p6_get_constraint() local
284 byte = (event >> PM_BYTE_SH) & PM_BYTE_MSK; in p6_get_constraint()
285 sh = byte * 4 + (16 - PM_UNIT_SH); in p6_get_constraint()
/openbmc/linux/drivers/iio/light/
H A Dmax44009.c366 int byte, reg; in max44009_read_threshold() local
373 byte = i2c_smbus_read_byte_data(data->client, reg); in max44009_read_threshold()
374 if (byte < 0) in max44009_read_threshold()
375 return byte; in max44009_read_threshold()
377 mantissa = byte & MAX44009_THRESH_MANT_MASK; in max44009_read_threshold()
391 exponent = byte & MAX44009_THRESH_EXP_MASK; in max44009_read_threshold()
/openbmc/qemu/hw/input/
H A Dvirtio-input-host.c105 uint8_t byte; in virtio_input_host_realize() local
163 byte = abs->u.bitmap[i]; in virtio_input_host_realize()
165 while (byte) { in virtio_input_host_realize()
166 if (byte & 1) { in virtio_input_host_realize()
170 byte >>= 1; in virtio_input_host_realize()
/openbmc/linux/arch/powerpc/platforms/powernv/
H A Dopal-wrappers.S49 .byte (STK_PARAM(R12) >> 8) & 0xff
50 .byte STK_PARAM(R12) & 0xff
/openbmc/linux/arch/x86/hyperv/
H A Dhv_spinlock.c26 static void hv_qlock_wait(u8 *byte, u8 val) in hv_qlock_wait() argument
50 if (READ_ONCE(*byte) == val) { in hv_qlock_wait()
/openbmc/linux/arch/loongarch/kernel/
H A Defi-header.S24 .byte 0x02 /* MajorLinkerVersion */
25 .byte 0x14 /* MinorLinkerVersion */
/openbmc/boost-dbus/include/dbus/
H A Delement.hpp23 typedef boost::uint8_t byte; typedef
37 typedef boost::variant<std::string, bool, byte, int16, uint16, int32, uint32,
64 struct element<byte> {
135 struct is_fixed_type<byte> : std::true_type {};
/openbmc/u-boot/drivers/pci/
H A Dpci_compat.c24 PCI_HOSE_OP(read, byte, 8, u8 *)
27 PCI_HOSE_OP(write, byte, 8, u8)
/openbmc/linux/drivers/input/touchscreen/
H A Dcyttsp5.c111 #define SET_CMD_LOW(byte, bits) \ argument
112 ((byte) = (((byte) & 0xF0) | ((bits) & 0x0F)))
113 #define SET_CMD_HIGH(byte, bits)\ argument
114 ((byte) = (((byte) & 0x0F) | ((bits) & 0xF0)))
115 #define SET_CMD_OPCODE(byte, opcode) SET_CMD_LOW(byte, opcode) argument
116 #define SET_CMD_REPORT_TYPE(byte, type) SET_CMD_HIGH(byte, ((type) << 4)) argument
117 #define SET_CMD_REPORT_ID(byte, id) SET_CMD_LOW(byte, id) argument

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