Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 25 of 179) sorted by relevance

12345678

/qemu/tests/qemu-iotests/
H A D021.out5 -1 is not a valid pattern byte
8 -1 is not a valid pattern byte
11 -1 is not a valid pattern byte
14 -1 is not a valid pattern byte
17 -1 is not a valid pattern byte
20 -1 is not a valid pattern byte
23 300 is not a valid pattern byte
26 300 is not a valid pattern byte
29 300 is not a valid pattern byte
32 300 is not a valid pattern byte
[all …]
/qemu/tests/tcg/x86_64/system/
H A Dboot.S212 .byte 0
213 .byte 0x9b
214 .byte 0xCF
215 .byte 0
220 .byte 0
221 .byte 0x93
223 .byte 0
235 .byte 0
238 .byte 0
243 .byte 0
[all …]
/qemu/util/
H A Dunicode.c66 unsigned byte, mask, len, i; in mod_utf8_codepoint() local
76 byte = *p++; in mod_utf8_codepoint()
77 if (byte < 0x80) { in mod_utf8_codepoint()
78 cp = byte; /* one byte sequence */ in mod_utf8_codepoint()
79 } else if (byte >= 0xFE) { in mod_utf8_codepoint()
81 } else if ((byte & 0x40) == 0) { in mod_utf8_codepoint()
86 for (mask = 0x80; byte & mask; mask >>= 1) { in mod_utf8_codepoint()
90 cp = byte & (mask - 1); in mod_utf8_codepoint()
92 byte = i < n ? *p : 0; in mod_utf8_codepoint()
93 if ((byte & 0xC0) != 0x80) { in mod_utf8_codepoint()
[all …]
/qemu/tests/tcg/i386/system/
H A Dboot.S153 .byte 0
154 .byte 0x9b
155 .byte 0xCF
156 .byte 0
161 .byte 0
162 .byte 0x93
163 .byte 0xCF
164 .byte 0
/qemu/docs/specs/
H A Dacpi_pci_hotplug.rst7 ACPI GPE block (IO ports 0xafe0-0xafe3, byte access)
13 PCI slot injection notification pending (IO port 0xae00-0xae03, 4-byte access)
21 PCI slot removal notification (IO port 0xae04-0xae07, 4-byte access)
29 PCI device eject (IO port 0xae08-0xae0b, 4-byte access)
38 - Read-only "up" register @0xae00, 4-byte access, bit per slot
39 - Read-only "down" register @0xae04, 4-byte access, bit per slot
40 - Read/write "eject" register @0xae08, 4-byte access,
42 - Read-only hotplug capable register @0xae0c, 4-byte access, bit per slot
44 PCI removability status (IO port 0xae0c-0xae0f, 4-byte access)
/qemu/docs/spin/
H A Dtcg-exclusive.promela56 #define mutex_t byte
73 byte pending_cpus;
75 byte running[N_CPUS];
76 byte has_waiter[N_CPUS];
180 byte done_cpu;
181 byte in_cpu;
184 byte id = _pid % N_CPUS;
185 byte cycles = 0;
201 byte done_exclusive;
202 byte in_exclusive;
[all …]
/qemu/pc-bios/optionrom/
H A Dpvh.S49 .byte 3; /* desired size in 512 units */
170 .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
176 .byte 0xff, 0xff, 0x00, 0x00, 0x00, 0x9a, 0xcf, 0x00
182 .byte 0xff, 0xff, 0x00, 0x00, 0x00, 0x92, 0xcf, 0x00
188 .byte 0xff, 0xff, 0x00, 0x00, 0x00, 0x9e, 0x00, 0x00
194 .byte 0xff, 0xff, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00
H A Doptionrom.h189 .byte (_end - _start) / 512;
199 .byte 0x01; \
200 .byte ( _pnph_len / 16 ); \
202 .byte 0x00; \
203 .byte 0x00; \
220 .byte 0; \
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
/qemu/include/net/
H A Dchecksum.h87 register uint32_t byte; in net_toeplitz_add() local
89 for (byte = 0; byte < len; byte++) { in net_toeplitz_add()
90 register uint8_t input_byte = input[byte]; in net_toeplitz_add()
/qemu/host/include/aarch64/host/
H A Dload-extract-al16-al8.h.inc20 * cross an 16-byte boundary then the access must be 16-byte atomic,
21 * otherwise the access must be 8-byte atomic.
31 * With FEAT_LSE2, LDP is single-copy atomic if 16-byte aligned
32 * and single-copy atomic on the parts if 8-byte aligned.
/qemu/target/s390x/tcg/
H A Dvec_helper.c59 uint8_t byte = cpu_ldub_data_ra(env, addr, GETPC()); in HELPER() local
61 s390_vec_write_element8(&tmp, i, byte); in HELPER()
180 uint8_t byte; in HELPER() local
183 byte = s390_vec_read_element8(v2, selector); in HELPER()
185 byte = s390_vec_read_element8(v3, selector - 16); in HELPER()
187 s390_vec_write_element8(&tmp, i, byte); in HELPER()
206 uint8_t byte = s390_vec_read_element8(v1, i); in HELPER() local
208 cpu_stb_data_ra(env, addr, byte, GETPC()); in HELPER()
/qemu/hw/i2c/
H A Dtrace-events6 bitbang_i2c_send(uint8_t byte) "TX byte 0x%02x"
7 bitbang_i2c_recv(uint8_t byte) "RX byte 0x%02x"
35 aspeed_i2c_bus_send(const char *mode, int i, int count, uint8_t byte) "%s send %d/%d 0x%02x"
36 aspeed_i2c_bus_recv(const char *mode, int i, int count, uint8_t byte) "%s recv %d/%d 0x%02x"
44 npcm7xx_smbus_send_byte(const char *id, uint8_t value, int success) "%s send byte: 0x%02x, success:…
45 npcm7xx_smbus_recv_byte(const char *id, uint8_t value) "%s recv byte: 0x%02x"
/qemu/tests/migration/i386/
H A Da-b-bootblock.S2 # repeatedly increments the first byte of each page in a 100MB
118 .byte 0, 0, 0, 0
125 .byte 0, 0x9A, 0xCF, 0
132 .byte 0, 0x92, 0xCF, 0
144 .byte 0x55
145 .byte 0xAA
/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 …]
/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 …]
/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
/qemu/host/include/x86_64/host/
H A Dload-extract-al16-al8.h.inc20 * cross an 16-byte boundary then the access must be 16-byte atomic,
21 * otherwise the access must be 8-byte atomic.
35 * when ptr_align % 16 == 0 for 16-byte atomicity.
/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()
/qemu/hw/misc/
H A Dnpcm7xx_rng.c60 uint8_t byte = 0; in npcm7xx_rng_read() local
62 if (qemu_guest_getrandom(&byte, sizeof(byte), NULL) == 0) { in npcm7xx_rng_read()
63 s->rngd = byte; in npcm7xx_rng_read()
/qemu/host/include/generic/host/
H A Dload-extract-al16-al8.h.inc17 * cross an 16-byte boundary then the access must be 16-byte atomic,
18 * otherwise the access must be 8-byte atomic.
/qemu/host/include/loongarch64/host/
H A Dload-extract-al16-al8.h.inc20 * cross an 16-byte boundary then the access must be 16-byte atomic,
21 * otherwise the access must be 8-byte atomic.
/qemu/include/hw/ipmi/
H A Dipmi.h275 static inline void rsp_buffer_set_error(RspBuffer *rsp, uint8_t byte) in rsp_buffer_set_error() argument
277 rsp->buffer[2] = byte; in rsp_buffer_set_error()
281 static inline void rsp_buffer_push(RspBuffer *rsp, uint8_t byte) in rsp_buffer_push() argument
287 rsp->buffer[rsp->len++] = byte; in rsp_buffer_push()
/qemu/hw/misc/macio/
H A Dtrace-events37 pmu_debug_protocol_cmd(int cmd, int cmdlen, int rsplen) "Got command byte 0x%02x, clen=%d, rlen=%d"
38 pmu_debug_protocol_cmdlen(int len) "got cmd length byte: %d"
40 pmu_debug_protocol_cmd_send_resp_size(int len) "sending length byte: %d"
41 pmu_debug_protocol_cmd_send_resp(int pos, int len) "sending byte: %d/%d"
/qemu/target/arm/tcg/
H A Dvec_internal.h57 static inline uint64_t expand_pred_b(uint8_t byte) in expand_pred_b() argument
59 return expand_pred_b_data[byte]; in expand_pred_b()
64 static inline uint64_t expand_pred_h(uint8_t byte) in expand_pred_h() argument
66 return expand_pred_h_data[byte & 0x55]; in expand_pred_h()

12345678