Home
last modified time | relevance | path

Searched refs:byte (Results 201 – 225 of 1847) sorted by relevance

12345678910>>...74

/openbmc/qemu/accel/tcg/
H A Dtranslate-all.c77 int more, byte; in encode_sleb128() local
80 byte = val & 0x7f; in encode_sleb128()
82 more = !((val == 0 && (byte & 0x40) == 0) in encode_sleb128()
83 || (val == -1 && (byte & 0x40) != 0)); in encode_sleb128()
85 byte |= 0x80; in encode_sleb128()
87 *p++ = byte; in encode_sleb128()
101 int byte, shift = 0; in decode_sleb128() local
104 byte = *p++; in decode_sleb128()
105 val |= (int64_t)(byte & 0x7f) << shift; in decode_sleb128()
107 } while (byte & 0x80); in decode_sleb128()
[all …]
/openbmc/linux/Documentation/admin-guide/device-mapper/
H A Ddm-flakey.rst59 The offset of the byte to replace.
60 Counting starts at 1, to replace the first byte.
71 During <down interval>, replace random byte in a read bio
76 During <down interval>, replace random byte in a write bio
82 Replaces the 32nd byte of READ bios with the value 1::
86 Replaces the 224th byte of REQ_META (=32) bios with the value 0::
/openbmc/u-boot/arch/arm/dts/
H A Dtegra-u-boot.dtsi14 pad-byte = <0xff>;
25 pad-byte = <0xff>;
35 pad-byte = <0xff>;
/openbmc/linux/sound/isa/sb/
H A Dsb8_midi.c26 char byte; in snd_sb8dsp_midi_interrupt() local
40 byte = inb(SBP(chip, READ)); in snd_sb8dsp_midi_interrupt()
42 snd_rawmidi_receive(chip->midi_substream_input, &byte, 1); in snd_sb8dsp_midi_interrupt()
168 char byte; in snd_sb8dsp_midi_output_write() local
175 if (snd_rawmidi_transmit_peek(substream, &byte, 1) != 1) { in snd_sb8dsp_midi_output_write()
190 outb(byte, SBP(chip, WRITE)); in snd_sb8dsp_midi_output_write()
193 snd_sbdsp_command(chip, byte); in snd_sb8dsp_midi_output_write()
/openbmc/pldm/oem/ibm/libpldmresponder/
H A Dfile_io_type_vpd.cpp13 typedef uint8_t byte; typedef
27 std::variant<std::vector<byte>> keywrd; in read()
48 uint32_t keywrdSize = std::get<std::vector<byte>>(keywrd).size(); in read()
99 keywrdFile.write((const char*)std::get<std::vector<byte>>(keywrd).data(), in read()
/openbmc/linux/drivers/gpu/drm/i915/display/
H A Dintel_dp_hdcp.c444 u8 *byte = buf; in intel_dp_hdcp2_write_msg() local
456 byte++; in intel_dp_hdcp2_write_msg()
468 byte += ret; in intel_dp_hdcp2_write_msg()
479 u8 *rx_info = byte; in get_receiver_id_list_rx_info()
504 u8 *byte = buf; in intel_dp_hdcp2_read_msg() local
523 byte++; in intel_dp_hdcp2_read_msg()
530 byte += ret; in intel_dp_hdcp2_read_msg()
549 (void *)byte, len); in intel_dp_hdcp2_read_msg()
557 byte += ret; in intel_dp_hdcp2_read_msg()
570 byte = buf; in intel_dp_hdcp2_read_msg()
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/
H A Dbit.c142 nvkm_i2c_get_byte(struct nvkm_i2c_bus *bus, u8 *byte, bool last) in nvkm_i2c_get_byte() argument
146 *byte = 0; in nvkm_i2c_get_byte()
151 *byte |= bit << i; in nvkm_i2c_get_byte()
158 nvkm_i2c_put_byte(struct nvkm_i2c_bus *bus, u8 byte) in nvkm_i2c_put_byte() argument
162 ret = i2c_bitw(bus, !!(byte & (1 << i))); in nvkm_i2c_put_byte()
/openbmc/linux/drivers/i2c/busses/
H A Di2c-diolan-u2c.c233 u8 *byte) in diolan_i2c_get_byte_ack() argument
239 *byte = dev->ibuffer[0]; in diolan_i2c_get_byte_ack()
246 static int diolan_i2c_put_byte_ack(struct i2c_diolan_u2c *dev, u8 byte) in diolan_i2c_put_byte_ack() argument
248 return diolan_usb_cmd_data(dev, CMD_I2C_PUT_BYTE_ACK, byte, false); in diolan_i2c_put_byte_ack()
364 u8 byte; in diolan_usb_xfer() local
374 ret = diolan_i2c_get_byte_ack(dev, ack, &byte); in diolan_usb_xfer()
381 if (byte == 0 in diolan_usb_xfer()
382 || byte > I2C_SMBUS_BLOCK_MAX) { in diolan_usb_xfer()
386 pmsg->len += byte; in diolan_usb_xfer()
388 pmsg->buf[j] = byte; in diolan_usb_xfer()
/openbmc/u-boot/include/
H A Dhexdump.h23 static inline char *hex_byte_pack(char *buf, u8 byte) in hex_byte_pack() argument
25 *buf++ = hex_asc_hi(byte); in hex_byte_pack()
26 *buf++ = hex_asc_lo(byte); in hex_byte_pack()
/openbmc/bmcweb/redfish-core/include/utils/
H A Dip_utils.hpp58 for (unsigned char byte : maskBytes) in ipv4VerifyIpAndGetBitcount() local
62 if (byte != 0U) in ipv4VerifyIpAndGetBitcount()
68 switch (byte) in ipv4VerifyIpAndGetBitcount()
/openbmc/linux/arch/nios2/boot/compressed/
H A Dhead.S111 .byte 0x00, 0x10
113 .byte 0
114 .byte 1
115 .byte 0x00, 0x80
/openbmc/u-boot/arch/x86/lib/
H A Dbios_interrupts.c114 u8 byte, reg; in int1a_handler() local
177 dm_pci_read_config8(dev, reg, &byte); in int1a_handler()
178 M.x86.R_ECX = byte; in int1a_handler()
189 byte = M.x86.R_ECX; in int1a_handler()
190 dm_pci_write_config8(dev, reg, byte); in int1a_handler()
/openbmc/qemu/replay/
H A Dreplay-internal.c47 void replay_put_byte(uint8_t byte) in replay_put_byte() argument
50 if (putc(byte, replay_file) == EOF) { in replay_put_byte()
93 uint8_t byte = 0; in replay_get_byte() local
99 byte = r; in replay_get_byte()
101 return byte; in replay_get_byte()
/openbmc/qemu/tests/tcg/xtensa/
H A Dtest_load_store.S26 .byte 0
82 .byte 0, 0, 0, 0x55
86 .byte 0xaa
108 .byte 0x55
112 .byte 0xaa
153 .byte 0x55
/openbmc/linux/drivers/scsi/libsas/
H A Dsas_host_smp.c77 u8 byte; in to_sas_gpio_gp_bit() local
94 byte = 3 - (od >> 3); in to_sas_gpio_gp_bit()
97 return &data[reg * 4 + byte]; in to_sas_gpio_gp_bit()
102 u8 *byte; in try_test_sas_gpio_gp_bit() local
105 byte = to_sas_gpio_gp_bit(od, data, index, count, &bit); in try_test_sas_gpio_gp_bit()
106 if (!byte) in try_test_sas_gpio_gp_bit()
109 return (*byte >> bit) & 1; in try_test_sas_gpio_gp_bit()
/openbmc/linux/arch/arm/boot/dts/intel/ixp/
H A Dintel-ixp42x-arcom-vulcan.dts45 * 32 MB of Flash in 0x20000 byte blocks
56 intel,ixp4xx-eb-byte-access-on-halfword = <1>;
75 intel,ixp4xx-eb-byte-access = <1>;
93 intel,ixp4xx-eb-byte-access = <1>;
97 * MMIO GPIO in one byte
103 intel,ixp4xx-eb-byte-access = <1>;
110 intel,ixp4xx-eb-byte-access = <1>;
/openbmc/linux/drivers/staging/pi433/Documentation/
H A Dpi433.txt116 byte in internal fifo
138 optionOn - the address byte will be automatically added to the
140 optionOff - the address byte will not be added to the telegram.
141 The address byte can be used for address filtering, so the receiver
142 will only receive telegrams with a given address byte.
161 one byte, used as address byte on address byte option.
228 optionOn - First byte of payload will be used as a length byte,
249 or length byte is used
255 Overrides the telegram length either given by the first byte of
270 one byte, used as node address byte on address byte option.
[all …]
/openbmc/phosphor-dbus-monitor/src/example/
H A Dtest.yaml19 - name: test byte property group
22 type: byte
100 - name: test byte watch
104 properties: test byte property group
154 - name: test byte journal
158 properties: test byte property group
312 type: byte
330 properties: test byte property group
342 properties: test byte property group
355 properties: test byte property group
[all …]
/openbmc/linux/arch/powerpc/kernel/
H A Dreloc_64.S107 p_dyn: .8byte __dynamic_start - 0b
108 p_rela: .8byte __rela_dyn_start - 0b
109 p_sym: .8byte __dynamic_symtab - 0b
110 p_st: .8byte _stext - 0b
/openbmc/linux/drivers/scsi/aic94xx/
H A Daic94xx_reg.c126 ASD_READ_SW(swa, u8, byte);
130 ASD_READ_SW(swb, u8, byte);
134 ASD_READ_SW(swc, u8, byte);
138 ASD_WRITE_SW(swa, u8, byte);
142 ASD_WRITE_SW(swb, u8, byte);
146 ASD_WRITE_SW(swc, u8, byte);
221 ASD_WRITE_REG(u8, byte);
273 ASD_READ_REG(u8, byte);
/openbmc/linux/arch/arm/boot/dts/aspeed/
H A Dibm-power10-dual.dtsi90 at25,byte-len = <0x80000>;
106 at25,byte-len = <0x80000>;
123 at25,byte-len = <0x80000>;
140 at25,byte-len = <0x80000>;
257 at25,byte-len = <0x80000>;
273 at25,byte-len = <0x80000>;
290 at25,byte-len = <0x80000>;
307 at25,byte-len = <0x80000>;
/openbmc/linux/arch/alpha/lib/
H A Dstrncat.S33 cmpbge $31, $1, $2 # bits set iff byte == 0
60 zapnot $1, $27, $2 # was last byte a null?
68 and $24, 0x80, $2 # no zero next byte
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Logging/
H A DIPMI.interface.yaml32 type: array[byte]
66 type: array[byte]
75 type: byte
79 type: byte
83 type: byte
104 type: array[byte]
108 type: byte
/openbmc/linux/drivers/net/ethernet/microchip/sparx5/
H A Dsparx5_netdev.c33 u32 byte = (35 - (pos / 8)); in __ifh_encode_bitfield() local
40 ifh_hdr[byte] |= (u8)((encode & 0xFF)); in __ifh_encode_bitfield()
43 ifh_hdr[byte - 1] |= (u8)((encode & 0xFF00) >> 8); in __ifh_encode_bitfield()
46 ifh_hdr[byte - 2] |= (u8)((encode & 0xFF0000) >> 16); in __ifh_encode_bitfield()
49 ifh_hdr[byte - 3] |= (u8)((encode & 0xFF000000) >> 24); in __ifh_encode_bitfield()
52 ifh_hdr[byte - 4] |= (u8)((encode & 0xFF00000000) >> 32); in __ifh_encode_bitfield()
55 ifh_hdr[byte - 5] |= (u8)((encode & 0xFF0000000000) >> 40); in __ifh_encode_bitfield()
/openbmc/linux/drivers/char/ipmi/
H A Dipmi_watchdog.c63 #define WDOG_SET_TIMER_USE(byte, use) \ argument
64 byte = ((byte) & 0xf8) | ((use) & 0x7)
65 #define WDOG_GET_TIMER_USE(byte) ((byte) & 0x7) argument
73 #define WDOG_SET_PRETIMEOUT_ACT(byte, use) \ argument
74 byte = ((byte) & 0x8f) | (((use) & 0x7) << 4)
75 #define WDOG_GET_PRETIMEOUT_ACT(byte) (((byte) >> 4) & 0x7) argument
88 #define WDOG_SET_TIMEOUT_ACT(byte, use) \ argument
89 byte = ((byte) & 0xf8) | ((use) & 0x7)
90 #define WDOG_GET_TIMEOUT_ACT(byte) ((byte) & 0x7) argument

12345678910>>...74