/qemu/tests/qemu-iotests/ |
H A D | 026.out | 31 write failed: No space left on device 36 write failed: No space left on device 41 qemu-io: Failed to flush the L2 table cache: No space left on device 42 qemu-io: Failed to flush the refcount block cache: No space left on device 43 write failed: No space left on device 48 qemu-io: Failed to flush the L2 table cache: No space left on device 49 qemu-io: Failed to flush the refcount block cache: No space left on device 50 write failed: No space left on device 89 write failed: No space left on device 90 read failed: No space left on device [all …]
|
H A D | 026.out.nocache | 31 write failed: No space left on device 36 write failed: No space left on device 41 qemu-io: Failed to flush the L2 table cache: No space left on device 42 qemu-io: Failed to flush the refcount block cache: No space left on device 43 write failed: No space left on device 48 qemu-io: Failed to flush the L2 table cache: No space left on device 49 qemu-io: Failed to flush the refcount block cache: No space left on device 50 write failed: No space left on device 89 write failed: No space left on device 90 read failed: No space left on device [all …]
|
/qemu/util/ |
H A D | cpuinfo-riscv.c | 39 unsigned left = CPUINFO_ZBA | CPUINFO_ZBB | CPUINFO_ZBS in cpuinfo_init() local 64 left &= ~info; in cpuinfo_init() 67 if (left) { in cpuinfo_init() 79 left &= ~(CPUINFO_ZBA | CPUINFO_ZBB | CPUINFO_ZBS); in cpuinfo_init() 82 left &= ~CPUINFO_ZICOND; in cpuinfo_init() 97 left &= ~CPUINFO_ZVE64X; in cpuinfo_init() 99 if (left) { in cpuinfo_init() 107 if (left & CPUINFO_ZBA) { in cpuinfo_init() 113 left &= ~CPUINFO_ZBA; in cpuinfo_init() 116 if (left & CPUINFO_ZBB) { in cpuinfo_init() [all …]
|
H A D | qtree.c | 89 QTreeNode *left; /* left subtree */ member 91 gint8 balance; /* height (right) - height (left) */ 125 node->left = NULL; in q_tree_node_new() 240 tmp = tmp->left; in q_tree_node_first() 264 tmp = node->left; in q_tree_node_previous() 297 tmp = tmp->left; in q_tree_node_next() 584 node = node->left; in q_tree_insert_internal() 588 child->left = node->left; in q_tree_insert_internal() 590 node->left = child; in q_tree_insert_internal() 607 child->left = node; in q_tree_insert_internal() [all …]
|
H A D | interval-tree.c | 154 * If we have a right-hand child, go down and then left as far as we can. in rb_next() 165 * No right-hand children. Everything down and left is smaller than us, in rb_next() 168 * parent, keep going up. First time it's a left-hand child of its in rb_next() 257 * the parent's right child (left rotate at parent). in rb_insert_augmented() 282 * the parent's left child (right rotate at gparent). in rb_insert_augmented() 325 /* Case 3 - left rotate at gparent */ in rb_insert_augmented() 365 * Case 1 - left rotate at parent in rb_erase_color() 451 * Case 4 - left rotate at parent + color flips in rb_erase_color() 501 /* Case 3 - left rotate at sibling */ in rb_erase_color() 764 IntervalTreeNode *left = rb_to_itree(tmp); in interval_tree_subtree_search() local [all …]
|
H A D | qdist.c | 179 /* set equally-sized bins between @from's left and right */ in qdist_bin__internal() 202 double left, right; in qdist_bin__internal() local 204 left = xmin + i * step; in qdist_bin__internal() 208 x = left; in qdist_bin__internal() 212 * To avoid double-counting we capture [left, right) ranges, except for in qdist_bin__internal() 213 * the rightmost bin, which captures a [left, right] range. in qdist_bin__internal()
|
/qemu/scripts/ |
H A D | meson-buildoptions.py | 94 def wrap(left, text, indent): argument 96 if len(left) >= indent: 97 yield left 98 left = spaces 100 left = (left + spaces)[0:indent] 102 text, width=LINE_WIDTH, initial_indent=left, subsequent_indent=spaces 110 def help_line(left, opt, indent, long): argument 119 for x in wrap(" " + left, right, indent): 194 left = f"--{key}={metavar}" 195 help_line(left, opt, 27, True) [all …]
|
/qemu/hw/audio/ |
H A D | gus.c | 54 int pos, left, shift, irqs; member 117 to_play = MIN (samples, s->left); in GUS_callback() 126 s->left -= written; in GUS_callback() 145 s->left = samples; in GUS_callback() 187 int pos = dma_pos, mode, left = dma_len - dma_pos; in GUS_read_DMA() local 191 while (left) { in GUS_read_DMA() 192 int to_copy = MIN ((size_t) left, sizeof (tmpbuf)); in GUS_read_DMA() 195 ldebug ("left=%d to_copy=%d pos=%d\n", left, to_copy, pos); in GUS_read_DMA() 197 gus_dma_transferdata (&s->emu, tmpbuf, copied, left == copied); in GUS_read_DMA() 198 left -= copied; in GUS_read_DMA() [all …]
|
H A D | adlib.c | 73 int left, pos, samples; member 196 to_play = MIN (s->left, samples); in adlib_callback() 201 s->left -= written; in adlib_callback() 226 s->left = samples; in adlib_callback()
|
H A D | wm8750.c | 233 /* We should connect the left and right channels to their in wm8750_set_format() 236 * connect both channels to where the left channel is routed. */ in wm8750_set_format() 387 case WM8750_LADCIN: /* ADC Signal Path Control (Left) */ in wm8750_tx() 421 case WM8750_LINVOL: /* Left Channel PGA */ in wm8750_tx() 442 case WM8750_LADC: /* Left ADC Digital Volume */ in wm8750_tx() 460 case WM8750_LDAC: /* Left Channel Digital Volume */ in wm8750_tx() 473 case WM8750_LOUTM1: /* Left Mixer Control (1) */ in wm8750_tx() 479 case WM8750_LOUTM2: /* Left Mixer Control (2) */ in wm8750_tx()
|
/qemu/replay/ |
H A D | replay-audio.c | 41 uint64_t left, right; in replay_audio_in() local 50 audio_sample_to_uint64(samples, pos, &left, &right); in replay_audio_in() 51 replay_put_qword(left); in replay_audio_in() 62 left = replay_get_qword(); in replay_audio_in() 64 audio_sample_from_uint64(samples, pos, left, right); in replay_audio_in()
|
/qemu/tests/qtest/libqos/ |
H A D | libqos-malloc.c | 76 static MemBlock *mlist_join(MemList *head, MemBlock *left, MemBlock *right) in mlist_join() argument 78 g_assert(head && left && right); in mlist_join() 80 left->size += right->size; in mlist_join() 82 return left; in mlist_join() 88 MemBlock *left; in mlist_coalesce() local 94 left = QTAILQ_PREV(node, MLIST_ENTNAME); in mlist_coalesce() 97 /* clowns to the left of me */ in mlist_coalesce() 98 if (left && mlist_boundary(left) == node->addr) { in mlist_coalesce() 99 node = mlist_join(head, left, node); in mlist_coalesce()
|
/qemu/include/standard-headers/linux/ |
H A D | virtio_snd.h | 306 VIRTIO_SND_CHMAP_FL, /* front left */ 308 VIRTIO_SND_CHMAP_RL, /* rear left */ 312 VIRTIO_SND_CHMAP_SL, /* side left */ 315 VIRTIO_SND_CHMAP_FLC, /* front left center */ 317 VIRTIO_SND_CHMAP_RLC, /* rear left center */ 319 VIRTIO_SND_CHMAP_FLW, /* front left wide */ 321 VIRTIO_SND_CHMAP_FLH, /* front left high */ 325 VIRTIO_SND_CHMAP_TFL, /* top front left */ 328 VIRTIO_SND_CHMAP_TRL, /* top rear left */ 331 VIRTIO_SND_CHMAP_TFLC, /* top front left center */ [all …]
|
/qemu/tests/qemu-iotests/tests/ |
H A D | qemu-img-close-errors.out | 9 …tivation of node 'NODE_NAME': Failed to write bitmap 'good-bitmap' to file: No space left on device 11 …tivation of node 'NODE_NAME': Failed to write bitmap 'good-bitmap' to file: No space left on device 17 …ation of node 'NODE_NAME': Failed to write bitmap 'stale-bitmap-7' to file: No space left on device 18 …ation of node 'NODE_NAME': Failed to write bitmap 'stale-bitmap-7' to file: No space left on device
|
H A D | image-fleecing | 43 ('0xad', '0x00f8000', '64k'), # Partial-left (1M-32K) 45 ('0xea', '0x3fe0000', '64k')] # Adjacent-left (64M - 128K) 47 zeroes = [('0', '0x00f8000', '32k'), # Left-end of partial-left (1M-32K) 51 remainder = [('0xd5', '0x108000', '32k'), # Right-end of partial-left [1] 52 ('0xdc', '32M', '32k'), # Left-end of partial-right [2]
|
/qemu/hw/display/ |
H A D | qxl-render.c | 38 rect->left, rect->right, rect->top, rect->bottom); in qxl_blit() 49 src += rect->left * qxl->guest_primary.bytes_pp; in qxl_blit() 50 dst += rect->left * qxl->guest_primary.bytes_pp; in qxl_blit() 51 len = (rect->right - rect->left) * qxl->guest_primary.bytes_pp; in qxl_blit() 92 area->left = 0; in qxl_set_rect_to_surface() 148 if (qxl->dirty[i].left < 0 || in qxl_render_update_area_unlocked() 150 qxl->dirty[i].left > qxl->dirty[i].right || in qxl_render_update_area_unlocked() 158 qxl->dirty[i].left, qxl->dirty[i].top, in qxl_render_update_area_unlocked() 159 qxl->dirty[i].right - qxl->dirty[i].left, in qxl_render_update_area_unlocked()
|
/qemu/target/hexagon/idef-parser/ |
H A D | idef-parser.y | 74 %left MIN MAX 75 %left '(' 76 %left ',' 77 %left '=' 80 %left '?' ':' 81 %left ANDL 82 %left '|' 83 %left '^' ANDOR 84 %left '&' 85 %left EQ NEQ [all …]
|
/qemu/docs/sphinx-static/ |
H A D | theme_overrides.css | 21 border-left: solid 5px #bcc6d2; 108 margin-left: -12px; 113 border-left: 0px; 153 * - align caption "left" ("center" is unsuitable on vast tables) 158 .rst-content table.docutils caption { text-align: left; font-size: 100%; } 291 padding-left: 0.5em;
|
/qemu/python/qemu/utils/ |
H A D | __init__.py | 79 ┃ wrapped to 66 characters. The right-hand margin is left open to 92 :param name: A label to apply to the upper-left of the box. 94 :param upper_left: Upper-left single-width text decoration character. 95 :param lower_left: Lower-left single-width text decoration character.
|
/qemu/qapi/ |
H A D | common.json | 188 # @ctrl-ctrl: left and right control key 190 # @alt-alt: left and right alt key 192 # @shift-shift: left and right shift key 194 # @meta-meta: left and right meta key
|
/qemu/hw/hyperv/ |
H A D | hv-balloon-page_range_tree.c | 26 const uint64_t *left = leftp, *right = rightp; in page_range_tree_key_compare() local 28 if (*left < *right) { in page_range_tree_key_compare() 30 } else if (*left > *right) { in page_range_tree_key_compare() 32 } else { /* *left == *right */ in page_range_tree_key_compare()
|
/qemu/ui/ |
H A D | spice-display.c | 37 return r->top == r->bottom || r->left == r->right; in qemu_spice_rect_is_empty() 52 dest->left = MIN(dest->left, r->left); in qemu_spice_rect_union() 134 rect->left, rect->right, in qemu_spice_create_one_update() 142 bw = rect->right - rect->left; in qemu_spice_create_one_update() 177 rect->left, rect->top, 0, 0, in qemu_spice_create_one_update() 178 rect->left, rect->top, bw, bh); in qemu_spice_create_one_update() 180 rect->left, rect->top, 0, 0, in qemu_spice_create_one_update() 213 for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) { in qemu_spice_create_update() 224 .left = x, in qemu_spice_create_update() 238 for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) { in qemu_spice_create_update() [all …]
|
H A D | vnc-enc-tight.c | 145 int pix, left[3]; in tight_detect_smooth_image24() local 161 left[c] = buf[((y+d)*w+x+d)*4+off+c] & 0xFF; in tight_detect_smooth_image24() 166 stats[abs(pix - left[c])]++; in tight_detect_smooth_image24() 167 left[c] = pix; in tight_detect_smooth_image24() 216 int sample, sum, left[3]; \ 241 left[c] = (int)(pix >> shift[c] & max[c]); \ 252 sum += abs(sample - left[c]); \ 253 left[c] = sample; \ 556 int here[3], upper[3], left[3], upperleft[3]; in tight_filter_gradient24() local 583 left[c] = here[c]; in tight_filter_gradient24() [all …]
|
/qemu/target/hexagon/imported/ |
H A D | shift.idef | 39 "Arithmetic Shift Left by Register", \ 53 "Logical Shift Left by Register", \ 85 "Arithmetic Shift Left by Register", \ 107 "Shift Left by Immediate", \ 110 "Rotate Left by Immediate", \ 130 "Shift Left by Register", \ 133 "Rotate Left by Immediate", \ 169 Q6INSN(S4_lsli,"Rd32=lsl(#s6,Rt32)",ATTRIBS(), "Shift an immediate left by register amount", 179 "Shift left by small amount and add", 539 "Vector Arithmetic Shift Left by Immediate", [all …]
|
/qemu/include/hw/ppc/ |
H A D | spapr_ovec.h | 16 * offset is from "left-to-right" in the traditional representation of 17 * a byte value where the MSB is the left-most bit. Thus, each
|