/qemu/util/ |
H A D | qtree.c | 90 QTreeNode *right; /* right subtree */ member 91 gint8 balance; /* height (right) - height (left) */ 126 node->right = NULL; in q_tree_node_new() 268 tmp = tmp->right; in q_tree_node_previous() 293 tmp = node->right; in q_tree_node_next() 589 child->right = node; in q_tree_insert_internal() 602 node = node->right; in q_tree_insert_internal() 606 child->right = node->right; in q_tree_insert_internal() 608 node->right = child; in q_tree_insert_internal() 628 g_assert(!bparent || bparent->left == node || bparent->right == 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() 167 * Go up the tree; any time the ancestor is a right-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() 312 /* Case 2 - right rotate at parent */ in rb_insert_augmented() 413 * Case 3 - right rotate at sibling in rb_erase_color() 475 /* Case 1 - right rotate at parent */ in rb_erase_color() 513 /* Case 4 - right rotate at parent + color flips */ in rb_erase_color() 567 * Case 2: node's successor is its right child in rb_erase_augmented() [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 205 right = xmin + (i + 1) * step; 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() 215 while (j < from->n && (from->entries[j].x < right || i == n - 1)) { in qdist_bin__internal()
|
/qemu/target/openrisc/ |
H A D | mmu.c | 46 int right, match, valid; in get_phys_mmu() local 69 right = itr & (super ? SXE : UXE) ? PAGE_EXEC : 0; in get_phys_mmu() 70 right |= dtr & (super ? SRE : URE) ? PAGE_READ : 0; in get_phys_mmu() 71 right |= dtr & (super ? SWE : UWE) ? PAGE_WRITE : 0; in get_phys_mmu() 72 right &= valid; in get_phys_mmu() 79 *prot = right; in get_phys_mmu() 82 "MMU lookup: need %d match %d valid %d right %d -> %s\n", in get_phys_mmu() 83 need, match, valid, right, (need & right) ? "OK" : "FAIL"); in get_phys_mmu() 86 if (likely(need & right)) { in get_phys_mmu()
|
/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() 52 replay_put_qword(right); in replay_audio_in() 63 right = replay_get_qword(); in replay_audio_in() 64 audio_sample_from_uint64(samples, pos, left, right); in replay_audio_in()
|
/qemu/include/standard-headers/linux/ |
H A D | virtio_snd.h | 307 VIRTIO_SND_CHMAP_FR, /* front right */ 309 VIRTIO_SND_CHMAP_RR, /* rear right */ 313 VIRTIO_SND_CHMAP_SR, /* side right */ 316 VIRTIO_SND_CHMAP_FRC, /* front right center */ 318 VIRTIO_SND_CHMAP_RRC, /* rear right center */ 320 VIRTIO_SND_CHMAP_FRW, /* front right wide */ 323 VIRTIO_SND_CHMAP_FRH, /* front right high */ 326 VIRTIO_SND_CHMAP_TFR, /* top front right */ 329 VIRTIO_SND_CHMAP_TRR, /* top rear right */ 332 VIRTIO_SND_CHMAP_TFRC, /* top front right center */ [all …]
|
/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() 81 mlist_delete(head, right); in mlist_join() 89 MemBlock *right; in mlist_coalesce() local 95 right = QTAILQ_NEXT(node, MLIST_ENTNAME); in mlist_coalesce() 103 /* jokers to the right */ in mlist_coalesce() 104 if (right && mlist_boundary(node) == right->addr) { in mlist_coalesce() 105 node = mlist_join(head, node, right); in mlist_coalesce()
|
/qemu/include/migration/ |
H A D | blocker.h | 26 * @errp - [out] The reason (if any) we cannot block migration right now. 42 * @errp - [out] The reason (if any) we cannot block migration right now. 70 * @errp - [out] The reason (if any) we cannot block migration right now. 85 * @errp - [out] The reason (if any) we cannot block migration right now.
|
/qemu/audio/ |
H A D | jackaudio.c | 176 int right = buffer->frames - wptr; in qjack_buffer_write_l() local 177 if (right > frames) { in qjack_buffer_write_l() 178 right = frames; in qjack_buffer_write_l() 181 const int left = frames - right; in qjack_buffer_write_l() 183 memcpy(buffer->data[c] + wptr, dest[c] , right * sizeof(float)); in qjack_buffer_write_l() 184 memcpy(buffer->data[c] , dest[c] + right, left * sizeof(float)); in qjack_buffer_write_l() 243 int right = buffer->frames - rptr; in qjack_buffer_read_l() local 244 if (right > copy) { in qjack_buffer_read_l() 245 right = copy; in qjack_buffer_read_l() 248 const int left = copy - right; in qjack_buffer_read_l() [all …]
|
/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/target/hexagon/imported/ |
H A D | shift.idef | 26 /* NOTE: Rdd = Rs *right* shifts don't make sense */ 27 /* NOTE: Rd[d] = Rs[s] *right* shifts with saturation don't make sense */ 32 "Arithmetic Shift Right by Register", \ 46 "Logical Shift Right by Register", \ 78 "Arithmetic Shift Right by Register", \ 99 "Arithmetic Shift Right by Immediate", \ 103 "Logical Shift Right by Immediate", \ 127 "Logical Shift Right by Register", \ 157 "Shift right with round", 161 Q6INSN(S2_asr_i_p_rnd,"Rdd32=asr(Rss32,#u6):rnd",ATTRIBS(), "Shift right with round", [all …]
|
/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/hw/display/ |
H A D | qxl-render.c | 38 rect->left, rect->right, rect->top, rect->bottom); in qxl_blit() 51 len = (rect->right - rect->left) * qxl->guest_primary.bytes_pp; in qxl_blit() 93 area->right = qxl->guest_primary.surface.width; in qxl_set_rect_to_surface() 150 qxl->dirty[i].left > qxl->dirty[i].right || in qxl_render_update_area_unlocked() 152 qxl->dirty[i].right > width || in qxl_render_update_area_unlocked() 159 qxl->dirty[i].right - qxl->dirty[i].left, in qxl_render_update_area_unlocked()
|
/qemu/include/ |
H A D | elf.h | 1158 #define R_PARISC_DIR17R 3 /* Right 17 bits of eff. address. */ 1160 #define R_PARISC_DIR14R 6 /* Right 14 bits of eff. address. */ 1163 #define R_PARISC_PCREL17R 11 /* Right 17 bits of rel. address. */ 1165 #define R_PARISC_PCREL14R 14 /* Right 14 bits of rel. address. */ 1167 #define R_PARISC_DPREL14R 22 /* Right 14 bits of rel. address. */ 1169 #define R_PARISC_GPREL14R 30 /* GP-relative, right 14 bits. */ 1171 #define R_PARISC_LTOFF14R 38 /* LT-relative, right 14 bits. */ 1176 #define R_PARISC_PLTOFF14R 54 /* PLT rel. address, right 14 bits. */ 1179 #define R_PARISC_LTOFF_FPTR14R 62 /* LT-rel. fct ptr, right 14 bits. */ 1184 #define R_PARISC_PCREL14WR 75 /* PC-rel. address, right 14 bits. */ [all …]
|
/qemu/tests/qemu-iotests/tests/ |
H A D | image-fleecing | 44 ('0x1d', '0x2008000', '64k'), # Partial-right (32M+32K) 48 ('0', '0x2010000', '32k'), # Right-end of partial-right (32M+64K) 51 remainder = [('0xd5', '0x108000', '32k'), # Right-end of partial-left [1] 52 ('0xdc', '32M', '32k'), # Left-end of partial-right [2]
|
/qemu/ui/ |
H A D | spice-display.c | 37 return r->top == r->bottom || r->left == r->right; in qemu_spice_rect_is_empty() 54 dest->right = MAX(dest->right, r->right); 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() 161 drawable->u.copy.src_area.right = bw; in qemu_spice_create_one_update() 213 for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) { in qemu_spice_create_update() 216 bw = MIN(blksize, ssd->dirty.right - x); in qemu_spice_create_update() 225 .right = x + bw, in qemu_spice_create_update() 238 for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) { in qemu_spice_create_update() 240 bw = MIN(blksize, ssd->dirty.right - x); in qemu_spice_create_update() [all …]
|
/qemu/scripts/ |
H A D | meson-buildoptions.py | 111 right = f'{opt["description"]}' 115 right += f" [{value}]" 118 right += f" (choices: {choices})" 119 for x in wrap(" " + left, right, indent):
|
/qemu/tests/qemu-iotests/ |
H A D | 257 | 69 Pattern('0x72', 0x2008000), # Partial-right (32M+32K) 73 Pattern('0x74', 0x0010000), # Adjacent-right 75 Pattern('0x6e', 0x2018000), # Partial-right (32M+96K) 83 3*GRANULARITY), # Overwrite and 2x Adjacent-right 85 Pattern('0xcc', 0x2028000), # Partial-right (32M+160K) 86 Pattern('0xdd', 0x3fc0000)]), # New; leaving a gap to the right 275 - simulated: Cancel the job right before it completes.
|
H A D | 130 | 71 # command line, that backing file is retained, with the right format 89 # command line, that backing file is retained, with the right format
|
/qemu/hw/openrisc/ |
H A D | boot.c | 72 /* We put the initrd right after the kernel; page aligned. */ in openrisc_load_initrd() 106 /* We put fdt right after the kernel and/or initrd. */ in openrisc_load_fdt()
|
/qemu/docs/ |
H A D | qcow2-cache.txt | 12 performance significantly. However, setting the right cache sizes is 52 The size of the L2 cache can be configured, and setting the right 77 Choosing the right cache sizes 198 (as explained in the "Choosing the right cache sizes" and "How to
|
/qemu/docs/interop/ |
H A D | pr-helper.rst | 39 Right now no feature is defined, so the two parties always write four 63 For PERSISTENT RESERVE OUT, the parameter list is sent right after the
|
/qemu/include/fpu/ |
H A D | softfloat-macros.h | 86 * @r: right or least-significant word 102 * shr_double: double-word merging right shift 104 * @r: right or least-significant word 107 * Shift @r right by @c bits, shifting in bits from @l. 120 | Shifts `a' right by the number of bits given in `count'. If any nonzero 146 | Shifts `a' right by the number of bits given in `count'. If any nonzero 172 | Shifts the 128-bit value formed by concatenating `a0' and `a1' right by 64 182 | value is shifted right by the number of bits given in `count', and the 218 | Shifts the 128-bit value formed by concatenating `a0' and `a1' right by the 250 | Shifts the 128-bit value formed by concatenating `a0' and `a1' right by the [all …]
|
/qemu/target/mips/tcg/ |
H A D | tx79_translate.c | 213 * PSRLH rd, rt, sa Parallel Shift Right Logical Halfword 214 * PSRAH rd, rt, sa Parallel Shift Right Arithmetic Halfword 216 * PSRLW rd, rt, sa Parallel Shift Right Logical Word 217 * PSRAW rd, rt, sa Parallel Shift Right Arithmetic Word 219 * PSRLVW rd, rt, rs Parallel Shift Right Logical Variable Word 220 * PSRAVW rd, rt, rs Parallel Shift Right Arithmetic Variable Word 547 * QFSRV rd, rs, rt Quadword Funnel Shift Right Variable
|
/qemu/tests/qapi-schema/ |
H A D | comments.json | 2 { 'enum': 'Status', # Comment to the right of code
|