Home
last modified time | relevance | path

Searched refs:byte (Results 176 – 200 of 1847) sorted by relevance

12345678910>>...74

/openbmc/u-boot/drivers/ram/stm32mp1/
H A Dstm32mp1_ddr_regs.h229 #define DXN(phy, offset, byte) ((u32)(phy) + (offset) + ((u32)(byte) * 0x40)) argument
230 #define DXNGCR(phy, byte) DXN(phy, 0x1c0, byte) argument
231 #define DXNDLLCR(phy, byte) DXN(phy, 0x1cc, byte) argument
232 #define DXNDQTR(phy, byte) DXN(phy, 0x1d0, byte) argument
233 #define DXNDQSTR(phy, byte) DXN(phy, 0x1d4, byte) argument
/openbmc/openbmc/poky/meta/recipes-devtools/valgrind/valgrind/
H A D0004-Bug-478624-Valgrind-incompatibility-with-binutils-2..patch10 I just resorted to using .byte arrays.
57 + a zero offset and CS prefix as an 8 byte no-op (Dec 2023).
104 + // single byte 'nop'. This gives more choice when code
110 + // one byte
116 + __asm__ __volatile__(".byte 0x8d,0x76,0x00");
119 + __asm__ __volatile__(".byte 0x8d,0x74,0x26,0x00");
122 + __asm__ __volatile__(".byte 0x2e,0x8d,0x74,0x26,0x00");
125 + __asm__ __volatile__(".byte 0x8d,0xb6,0x00,0x00,0x00,0x00");
128 + __asm__ __volatile__(".byte 0x8d,0xb4,0x26,0x00,0x00,0x00,0x00");
131 + __asm__ __volatile__(".byte 0x2e,0x8d,0xb4,0x26,0x00,0x00,0x00,0x00");
/openbmc/u-boot/tools/binman/test/
H A D061_fdt_update_bad.dts9 pad-byte = <0x26>;
15 pad-byte = <0x21>;
23 pad-byte = <0x61>;
/openbmc/phosphor-dbus-interfaces/yaml/com/ibm/ipzvpd/
H A DDINF.interface.yaml5 type: array[byte]
9 type: array[byte]
13 type: array[byte]
H A DVSRC.interface.yaml5 type: array[byte]
9 type: array[byte]
13 type: array[byte]
H A DLXR0.interface.yaml5 type: array[byte]
9 type: array[byte]
13 type: array[byte]
/openbmc/linux/drivers/media/pci/saa7134/
H A Dsaa7134-i2c.c233 int addr,rc,i,byte; in saa7134_i2c_xfer() local
269 for (byte = 0; byte < msgs[i].len; byte++) { in saa7134_i2c_xfer()
275 msgs[i].buf[byte] = rc; in saa7134_i2c_xfer()
290 for (byte = 0; byte < msgs[i].len; byte++) { in saa7134_i2c_xfer()
291 data = msgs[i].buf[byte]; in saa7134_i2c_xfer()
/openbmc/linux/Documentation/i2c/
H A Di2c-stub.rst9 types of SMBus commands: write quick, (r/w) byte, (r/w) byte data, (r/w)
21 A pointer register with auto-increment is implemented for all byte
22 operations. This allows for continuous byte reads like those supported by
52 value 0x1f0000 would only enable the quick, byte and byte data
62 If your target driver polls some byte or word waiting for it to change, the
/openbmc/u-boot/drivers/i2c/
H A Dintel_i2c.c67 u8 byte; in smbus_wait_until_ready() local
71 byte = inb(base + SMBHSTSTAT); in smbus_wait_until_ready()
72 if (!(byte & 1)) in smbus_wait_until_ready()
82 u8 byte; in smbus_wait_until_done() local
86 byte = inb(base + SMBHSTSTAT); in smbus_wait_until_done()
87 if (!((byte & 1) || (byte & ~((1 << 6) | (1 << 0))) == 0)) in smbus_wait_until_done()
/openbmc/linux/arch/alpha/lib/
H A Dev67-strrchr.S43 mov zero, t8 # E : t8 is last match byte compare mask
55 cmpbge zero, t0, t1 # E : bits set iff byte == zero
58 cmpbge zero, t4, t4 # E : bits set iff byte is garbage
60 cmpbge zero, t2, t3 # E : bits set iff byte == c
77 cmpbge zero, t0, t1 # E : bits set iff byte == zero
78 cmpbge zero, t2, t3 # E : bits set iff byte == c
84 negq t1, t4 # E : isolate first null byte match
/openbmc/linux/arch/powerpc/purgatory/
H A Dtrampoline_64.S124 .8byte 0x0
130 .8byte 0x0
136 .8byte 0x0
142 .8byte 0x0
148 .8byte 0x0
/openbmc/qemu/hw/input/
H A Dlm832x.c173 static uint8_t lm_kbd_read(LM823KbdState *s, int reg, int byte) in lm_kbd_read() argument
225 if (byte >= s->kbd.len) in lm_kbd_read()
228 return s->kbd.fifo[(s->kbd.start + byte) & (sizeof(s->kbd.fifo) - 1)]; in lm_kbd_read()
251 return ret >> (byte << 3); in lm_kbd_read()
254 static void lm_kbd_write(LM823KbdState *s, int reg, int byte, uint8_t value) in lm_kbd_write() argument
285 if (!byte) in lm_kbd_write()
294 if (!byte) in lm_kbd_write()
303 if (!byte) in lm_kbd_write()
345 if (byte == 0) { in lm_kbd_write()
354 } else if (byte == 1) { in lm_kbd_write()
[all …]
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Dnand_ecc.c115 static inline int countbits(uint32_t byte) in countbits() argument
119 for (;byte; byte >>= 1) in countbits()
120 res += byte & 0x01; in countbits()
/openbmc/phosphor-networkd/src/
H A Dncsi_netlink_main.cpp93 std::string byte(2, '\0'); in main() local
103 byte[0] = payloadStr[i - 1]; in main()
104 byte[1] = payloadStr[i]; in main()
108 payload.push_back(stoi(byte, nullptr, 16)); in main()
/openbmc/u-boot/common/eeprom/
H A Deeprom_field.c32 unsigned char byte; in __eeprom_field_update_bin() local
43 byte = 0; in __eeprom_field_update_bin()
58 byte = simple_strtoul(tmp, &endptr, 0); in __eeprom_field_update_bin()
59 if (*endptr != '\0' || byte < 0) in __eeprom_field_update_bin()
62 field->buf[j] = byte; in __eeprom_field_update_bin()
/openbmc/linux/drivers/platform/olpc/
H A Dolpc-xo175-ec.c216 u8 byte; member
307 u8 byte; in olpc_xo175_ec_complete() local
329 byte = priv->rx_buf.resp.byte; in olpc_xo175_ec_complete()
377 priv->resp_data[priv->resp_len++] = byte; in olpc_xo175_ec_complete()
393 priv->resp_data[0] = byte; in olpc_xo175_ec_complete()
410 dev_dbg(dev, "got event %.2x\n", byte); in olpc_xo175_ec_complete()
411 switch (byte) { in olpc_xo175_ec_complete()
441 dev_dbg(dev, "ignored unknown event %.2x\n", byte); in olpc_xo175_ec_complete()
447 if (byte == '\n') { in olpc_xo175_ec_complete()
449 } else if (isprint(byte)) { in olpc_xo175_ec_complete()
[all …]
/openbmc/linux/arch/m68k/ifpsp060/
H A Dos.S92 move.b (%a0)+,(%a1)+ | copy 1 byte
97 move.b (%a0)+,%d1 | copy 1 byte
125 move.b (%a0)+,(%a1)+ | copy 1 byte
132 move.b %d1,(%a1)+ | copy 1 byte
140 | Read a data byte from user memory.
146 | d0 - data byte in d0
155 dmrbuae:movs.b (%a0),%d0 | fetch user byte
157 dmrbs: move.b (%a0),%d0 | fetch super byte
234 | Write a data byte to user memory.
238 | d0 - data byte in d0
[all …]
/openbmc/linux/arch/x86/crypto/
H A Dblake2s-core.S22 .byte 0, 2, 4, 6, 1, 3, 5, 7, 14, 8, 10, 12, 15, 9, 11, 13
23 .byte 14, 4, 9, 13, 10, 8, 15, 6, 5, 1, 0, 11, 3, 12, 2, 7
24 .byte 11, 12, 5, 15, 8, 0, 2, 13, 9, 10, 3, 7, 4, 14, 6, 1
25 .byte 7, 3, 13, 11, 9, 1, 12, 14, 15, 2, 5, 4, 8, 6, 10, 0
26 .byte 9, 5, 2, 10, 0, 7, 4, 15, 3, 14, 11, 6, 13, 1, 12, 8
27 .byte 2, 6, 0, 8, 12, 10, 11, 3, 1, 4, 7, 15, 9, 13, 5, 14
28 .byte 12, 1, 14, 4, 5, 15, 13, 10, 8, 0, 6, 9, 11, 7, 3, 2
29 .byte 13, 7, 12, 3, 11, 14, 1, 9, 2, 5, 15, 8, 10, 0, 4, 6
30 .byte 6, 14, 11, 0, 15, 9, 3, 8, 10, 12, 13, 1, 5, 2, 7, 4
31 .byte 10, 8, 7, 1, 2, 4, 6, 5, 13, 15, 9, 3, 0, 11, 14, 12
/openbmc/linux/net/sunrpc/auth_gss/
H A Dgss_krb5_keys.c86 int byte, i, msbit; in krb5_nfold() local
100 byte = 0; in krb5_nfold()
119 byte += (((in[((inbits - 1) - (msbit >> 3)) % inbits] << 8)| in krb5_nfold()
124 byte += out[i % outbits]; in krb5_nfold()
125 out[i % outbits] = byte & 0xff; in krb5_nfold()
128 byte >>= 8; in krb5_nfold()
133 if (byte) { in krb5_nfold()
136 byte += out[i]; in krb5_nfold()
137 out[i] = byte & 0xff; in krb5_nfold()
140 byte >>= 8; in krb5_nfold()
/openbmc/u-boot/include/dt-bindings/sound/
H A Dazalia.h25 #define AZALIA_SET_BYTE(codec, nid, opcode, val, byte) \ argument
28 ((opcode) + (byte)) << AZALIA_VERB_SHIFT | \
29 (((val) >> ((byte) * 8)) & 0xff))
/openbmc/linux/drivers/auxdisplay/
H A Dks0108.c60 void ks0108_writedata(unsigned char byte) in ks0108_writedata() argument
62 parport_write_data(ks0108_parport, byte); in ks0108_writedata()
65 void ks0108_writecontrol(unsigned char byte) in ks0108_writecontrol() argument
68 parport_write_control(ks0108_parport, byte ^ (bit(0) | bit(1) | bit(3))); in ks0108_writecontrol()
/openbmc/linux/sound/pci/ca0106/
H A Dca_midi.c41 unsigned char byte; in ca_midi_interrupt() local
53 byte = ca_midi_read_data(midi); in ca_midi_interrupt()
55 snd_rawmidi_receive(midi->substream_input, &byte, 1); in ca_midi_interrupt()
65 snd_rawmidi_transmit(midi->substream_output, &byte, 1) == 1) { in ca_midi_interrupt()
66 ca_midi_write_data(midi, byte); in ca_midi_interrupt()
215 unsigned char byte; in ca_midi_output_trigger() local
223 snd_rawmidi_transmit(substream, &byte, 1) != 1) { in ca_midi_output_trigger()
228 ca_midi_write_data(midi, byte); in ca_midi_output_trigger()
/openbmc/linux/arch/powerpc/boot/
H A Dcrt0.S27 p_start: .8byte _start
28 p_etext: .8byte _etext
29 p_bss_start: .8byte __bss_start
30 p_end: .8byte _end
32 p_toc: .8byte .TOC. - p_base
33 p_dyn: .8byte __dynamic_start - p_base
34 p_rela: .8byte __rela_dyn_start - p_base
35 p_prom: .8byte 0
37 p_pstack: .8byte _platform_stack_top
/openbmc/qemu/pc-bios/optionrom/
H A Dmultiboot.S214 .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
217 .byte 0xff, 0xff, 0x00, 0x00, 0x00, 0x9a, 0xcf, 0x00
220 .byte 0xff, 0xff, 0x00, 0x00, 0x00, 0x92, 0xcf, 0x00
223 .byte 0xff, 0xff, 0x00, 0x00, 0x00, 0x9e, 0x00, 0x00
226 .byte 0xff, 0xff, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00
/openbmc/linux/arch/riscv/include/asm/
H A Dalternative-macros.h10 .4byte \oldptr - .
11 .4byte \newptr - .
12 .2byte \vendor_id
13 .2byte \new_len
14 .4byte \patch_id

12345678910>>...74