Home
last modified time | relevance | path

Searched refs:right (Results 1 – 25 of 128) sorted by relevance

123456

/qemu/util/
H A Dqtree.c126 node->right = NULL; in q_tree_node_new()
293 tmp = node->right; in q_tree_node_next()
606 child->right = node->right; in q_tree_insert_internal()
784 parent->right = node->right; in q_tree_remove_internal()
798 parent->right = node->right; in q_tree_remove_internal()
806 tmp->right = node->right; in q_tree_remove_internal()
845 next->right = node->right; in q_tree_remove_internal()
1177 node->right = q_tree_node_rotate_right(node->right); in q_tree_node_balance()
1255 right = node->right; in q_tree_node_rotate_left()
1258 node->right = right->left; in q_tree_node_rotate_left()
[all …]
H A Dqdist.c202 double left, right; in qdist_bin__internal() local
205 right = xmin + (i + 1) * step; 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 Dmmu.c45 int right, match, valid; in get_phys_mmu() local
68 right = itr & (super ? SXE : UXE) ? PAGE_EXEC : 0; in get_phys_mmu()
69 right |= dtr & (super ? SRE : URE) ? PAGE_READ : 0; in get_phys_mmu()
70 right |= dtr & (super ? SWE : UWE) ? PAGE_WRITE : 0; in get_phys_mmu()
71 right &= valid; in get_phys_mmu()
78 *prot = right; in get_phys_mmu()
82 need, match, valid, right, (need & right) ? "OK" : "FAIL"); in get_phys_mmu()
85 if (likely(need & right)) { in get_phys_mmu()
/qemu/replay/
H A Dreplay-audio.c41 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/tests/qtest/libqos/
H A Dlibqos-malloc.c76 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()
104 if (right && mlist_boundary(node) == right->addr) { in mlist_coalesce()
105 node = mlist_join(head, node, right); in mlist_coalesce()
/qemu/audio/
H A Djackaudio.c176 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 …]
H A Dmixeng.c343 uint64_t *left, uint64_t *right) in audio_sample_to_uint64() argument
353 *right = sample->r; in audio_sample_to_uint64()
358 uint64_t left, uint64_t right) in audio_sample_from_uint64() argument
368 sample->r = right; in audio_sample_from_uint64()
H A Daudio.h167 uint64_t *left, uint64_t *right);
169 uint64_t left, uint64_t right);
/qemu/scripts/
H A Dmeson-buildoptions.py111 right = f'{opt["description"]}'
115 right += f" [{value}]"
118 right += f" (choices: {choices})"
119 for x in wrap(" " + left, right, indent):
/qemu/hw/display/
H A Dqxl-render.c38 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/hw/hyperv/
H A Dhv-balloon-page_range_tree.c26 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()
/qemu/ui/
H A Dspice-display.c35 return r->top == r->bottom || r->left == r->right; in qemu_spice_rect_is_empty()
52 dest->right = MAX(dest->right, r->right); in qemu_spice_rect_union()
132 rect->left, rect->right, in qemu_spice_create_one_update()
140 bw = rect->right - rect->left; in qemu_spice_create_one_update()
159 drawable->u.copy.src_area.right = bw; in qemu_spice_create_one_update()
214 bw = MIN(blksize, ssd->dirty.right - x); in qemu_spice_create_update()
223 .right = x + bw, in qemu_spice_create_update()
236 for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) { in qemu_spice_create_update()
238 bw = MIN(blksize, ssd->dirty.right - x); in qemu_spice_create_update()
244 .right = x + bw, in qemu_spice_create_update()
[all …]
/qemu/target/hexagon/idef-parser/
H A Didef-parser.y78 %right CIRCADD
79 %right INC DEC ANDA ORA XORA
88 %right ABS
91 %right '~' '!'
93 %right CAST
94 %right LOCNT BREV
/qemu/tests/qapi-schema/
H A Dcomments.json2 { 'enum': 'Status', # Comment to the right of code
/qemu/hw/audio/
H A Dlm4549.h43 uint32_t lm4549_write_samples(lm4549_state *s, uint32_t left, uint32_t right);
H A Dhda-codec.c452 uint32_t left, right; in hda_audio_set_amp() local
460 right = st->mute_right ? 0 : st->gain_right; in hda_audio_set_amp()
463 right = right * 255 / QEMU_HDA_AMP_STEPS; in hda_audio_set_amp()
469 AUD_set_volume_out(st->voice.out, muted, left, right); in hda_audio_set_amp()
471 AUD_set_volume_in(st->voice.in, muted, left, right); in hda_audio_set_amp()
H A Dlm4549.c221 uint32_t lm4549_write_samples(lm4549_state *s, uint32_t left, uint32_t right) in lm4549_write_samples() argument
235 s->buffer[s->buffer_level++] = (right >> 4); in lm4549_write_samples()
H A Dasc.c287 uint32_t left = 0, right = 0; in generate_wavetable() local
305 right += sample; in generate_wavetable()
309 buf[count * 2 + 1] = right >> 2; in generate_wavetable()
/qemu/linux-user/aarch64/
H A Dmeson.build3 # both header files and include the right one via #if.
/qemu/linux-user/arm/
H A Dmeson.build11 # both header files and include the right one via #if.
/qemu/docs/system/arm/
H A Dmusca.rst30 software must be built for the right variant.
/qemu/include/qemu/
H A Dqueue.h464 #define QTAILQ_REMOVE_SEVERAL(head, left, right, field) do { \ argument
465 if (((right)->field.tqe_next) != NULL) \
466 (right)->field.tqe_next->field.tqe_circ.tql_prev = \
470 (left)->field.tqe_circ.tql_prev->tql_next = (right)->field.tqe_next; \
/qemu/tests/tcg/cris/bare/
H A Dcheck_movei.s13 ;; store to bring it into the tlb with the right prot bits
/qemu/docs/system/
H A Dkeys.rst.inc6 while ``-display sdl,grab-mod=rctrl`` changes it to the right Ctrl key.
/qemu/docs/system/openrisc/
H A Dor1k-sim.rst30 The 'or1ksim_defconfig' for Linux openrisc kernels includes the right

123456