Home
last modified time | relevance | path

Searched refs:first (Results 1 – 25 of 252) sorted by relevance

1234567891011

/qemu/hw/usb/
H A Dcombined-packet.c64 status = combined->first->status; in usb_combined_input_packet_complete()
65 actual_length = combined->first->actual_length; in usb_combined_input_packet_complete()
107 USBPacket *first = p->combined->first; in usb_combined_packet_cancel() local
111 if (p == first) { in usb_combined_packet_cancel()
155 if (first) { in usb_ep_combine_input_packets()
156 if (first->combined == NULL) { in usb_ep_combine_input_packets()
159 combined->first = first; in usb_ep_combine_input_packets()
166 first = p; in usb_ep_combine_input_packets()
177 usb_device_handle_data(ep->dev, first); in usb_ep_combine_input_packets()
179 if (first->combined) { in usb_ep_combine_input_packets()
[all …]
/qemu/fsdev/
H A Dp9array.h91 scalar_type first[]; \
114 *auto_var = &arr->first[0]; \
119 scalar_type *first = (*auto_var); \
120 if (!first) { \
124 ((char *)first) - offsetof(P9Array##scalar_type, first) \
127 scalar_cleanup_func(&arr->first[i]); \
/qemu/hw/display/
H A Dframebuffer.c72 int first, last = 0; in framebuffer_update_display() local
96 first = -1; in framebuffer_update_display()
108 if (first == -1) in framebuffer_update_display()
109 first = i; in framebuffer_update_display()
117 if (first < 0) { in framebuffer_update_display()
120 *first_row = first; in framebuffer_update_display()
H A Domap_lcdc.c204 int size, height, first, last; in omap_update_display() local
296 first = 0; in omap_update_display()
300 first = (omap_lcd->subpanel >> 16) & 0x3ff; in omap_update_display()
319 &first, &last); in omap_update_display()
321 if (first >= 0) { in omap_update_display()
322 dpy_gfx_update(omap_lcd->con, 0, first, width, last - first + 1); in omap_update_display()
H A Dpl110.c220 int first; in pl110_update_display() local
290 first = 0; in pl110_update_display()
303 &first, &last); in pl110_update_display()
305 if (first >= 0) { in pl110_update_display()
306 dpy_gfx_update(s->con, 0, first, s->cols, last - first + 1); in pl110_update_display()
H A Dbcm2835_fb.c156 int first = 0; in fb_update_display() local
206 draw_line_src16, s, &first, &last); in fb_update_display()
208 if (first >= 0) { in fb_update_display()
209 dpy_gfx_update(s->con, 0, first, s->config.xres, in fb_update_display()
210 last - first + 1); in fb_update_display()
/qemu/hw/ppc/
H A Dspapr_irq.c542 int first, i; in ics_find_free_block() local
544 for (first = 0; first < ics->nr_irqs; first += alignnum) { in ics_find_free_block()
545 if (num > (ics->nr_irqs - first)) { in ics_find_free_block()
548 for (i = first; i < first + num; ++i) { in ics_find_free_block()
553 if (i == (first + num)) { in ics_find_free_block()
554 return first; in ics_find_free_block()
564 int first = -1; in spapr_irq_find() local
578 first = ics_find_free_block(ics, num, num); in spapr_irq_find()
580 first = ics_find_free_block(ics, num, 1); in spapr_irq_find()
583 if (first < 0) { in spapr_irq_find()
[all …]
/qemu/ui/
H A Dudmabuf.c16 static bool first = true; in udmabuf_fd() local
19 if (!first) { in udmabuf_fd()
22 first = false; in udmabuf_fd()
/qemu/tests/qemu-iotests/tests/
H A Dparallels-checks.out58 == check the first cluster ==
64 == write another pattern to the first clusters ==
67 == check the first cluster ==
88 == check the first cluster with self-repair ==
95 == write another pattern to the first clusters ==
98 == check the first cluster ==
106 == write pattern to first cluster ==
110 == check first cluster ==
116 == write pattern to first cluster ==
129 == check first cluster ==
H A Dzoned.out4 (1) report the first zone:
7 report the first 10 zones
23 (2) opening the first zone
36 (3) closing the first zone
58 After appending the first zone firstly:
61 After appending the first zone secondly:
/qemu/util/
H A Dhbitmap.c175 pos = first >> hb->granularity; in hbitmap_iter_init()
467 uint64_t first, n; in hbitmap_set() local
477 first = start >> hb->granularity; in hbitmap_set()
480 n = last - first + 1; in hbitmap_set()
482 hb->count += n - hb_count_between(hb, first, last); in hbitmap_set()
561 uint64_t first; in hbitmap_reset() local
575 first = start >> hb->granularity; in hbitmap_reset()
579 hb->count -= hb_count_between(hb, first, last); in hbitmap_reset()
729 unsigned long *first; in hbitmap_deserialize_zeroes() local
736 memset(first, 0, el_count * sizeof(unsigned long)); in hbitmap_deserialize_zeroes()
[all …]
H A Daio-win32.c326 bool progress, have_select_revents, first; in aio_poll() local
372 first = true; in aio_poll()
389 assert(first); in aio_poll()
395 if (first) { in aio_poll()
397 first = false; in aio_poll()
/qemu/chardev/
H A Dbaum.c276 int room, first; in baum_chr_accept_input() local
286 first = BUF_SIZE - baum->out_buf_ptr; in baum_chr_accept_input()
287 if (room > first) { in baum_chr_accept_input()
290 baum->out_buf_used -= first; in baum_chr_accept_input()
291 room -= first; in baum_chr_accept_input()
315 int first; in baum_write_packet() local
329 first = BUF_SIZE - baum->out_buf_ptr; in baum_write_packet()
330 if (len > first) { in baum_write_packet()
331 memcpy(baum->out_buf + out, cur, first); in baum_write_packet()
333 len -= first; in baum_write_packet()
[all …]
/qemu/target/i386/hvf/
H A Dhvf-cpu.c36 static bool first = true; in hvf_cpu_xsave_init() local
39 if (!first) { in hvf_cpu_xsave_init()
42 first = false; in hvf_cpu_xsave_init()
/qemu/hw/intc/
H A Dsh_intc.c128 unsigned int *first, in sh_intc_locate() argument
146 *first = mr->reg_width - 1; in sh_intc_locate()
162 *first = pr->reg_width / pr->field_width - 1; in sh_intc_locate()
202 unsigned int first; in sh_intc_read() local
208 &enum_ids, &first, &width, &mode); in sh_intc_read()
218 unsigned int first; in sh_intc_write() local
227 &enum_ids, &first, &width, &mode); in sh_intc_write()
241 for (k = 0; k <= first; k++) { in sh_intc_write()
243 mask <<= (first - k) * width; in sh_intc_write()
/qemu/tests/qapi-schema/
H A Ddoc-non-first-section.json1 # = section must be first line
5 # = Not first
H A Ddoc-non-first-section.err1 doc-non-first-section.json:5:1: '=' heading must come first in a comment block
/qemu/scripts/coverage/
H A Dcompare_gcov_json.py72 def find_missing_files(first, second): argument
77 for f in sorted(first):
78 file_a = first[f]
/qemu/tests/unit/
H A Dtest-keyval.c760 keyval_merge(first, second, &err); in test_keyval_merge_dict()
762 g_assert(qobject_is_equal(QOBJECT(combined), QOBJECT(first))); in test_keyval_merge_dict()
763 qobject_unref(first); in test_keyval_merge_dict()
770 QDict *first = keyval_parse("opt1.0=abc,opt2.0=xyz", in test_keyval_merge_list() local
778 keyval_merge(first, second, &err); in test_keyval_merge_list()
780 g_assert(qobject_is_equal(QOBJECT(combined), QOBJECT(first))); in test_keyval_merge_list()
781 qobject_unref(first); in test_keyval_merge_list()
788 QDict *first = keyval_parse("opt2=ABC", in test_keyval_merge_conflict() local
792 QDict *third = qdict_clone_shallow(first); in test_keyval_merge_conflict()
795 keyval_merge(first, second, &err); in test_keyval_merge_conflict()
[all …]
H A Dtest-hbitmap.c36 uint64_t first) in hbitmap_test_check() argument
44 hbitmap_iter_init(&hbi, data->hb, first); in hbitmap_test_check()
46 i = first; in hbitmap_test_check()
71 if (first == 0) { in hbitmap_test_check()
151 hbitmap_set(data->hb, first, count); in hbitmap_test_set()
153 size_t pos = first >> LOG_BITS_PER_LONG; in hbitmap_test_set()
154 int bit = first & (BITS_PER_LONG - 1); in hbitmap_test_set()
155 first++; in hbitmap_test_set()
170 hbitmap_reset(data->hb, first, count); in hbitmap_test_reset()
173 int bit = first & (BITS_PER_LONG - 1); in hbitmap_test_reset()
[all …]
/qemu/target/i386/kvm/
H A Dkvm-cpu.c121 static bool first = true; in kvm_cpu_xsave_init() local
125 if (!first) { in kvm_cpu_xsave_init()
128 first = false; in kvm_cpu_xsave_init()
/qemu/docs/devel/
H A Dblkverify.txt14 Blkverify solves this problem by catching data corruption inside QEMU the first
30 first instance where corrupt data is read.
34 Imagine raw.img has 0xcd repeated throughout its first sector:
45 And test.img is corrupt, its first sector is zeroed when it shouldn't be:
/qemu/tests/qemu-iotests/
H A D015.out5 creating first snapshot
11 checking first snapshot
/qemu/docs/specs/
H A Dppc-spapr-numa.rst57 the first element is 1) of the ibm,associativity array. The first
62 to the same first boundary will have the shortest distance from each
71 The first NUMA level (0x3) is interpreted as the third element of each
73 the third level is the first element. Let's also consider that elements
74 belonging to the first NUMA level have distance equal to 10 from each
114 NUMA configuration, distance between them is one boundary above the first
133 P1 and P2 belongs to the same first order boundary. The distance between then
154 * both resources in the first NUMA level: 10
397 The first and second level are equal, 0x4, and a third one was added in
403 * if the resources belongs to the same first NUMA level = 10
[all …]
/qemu/tests/tcg/multiarch/system/
H A Dmemory.c354 int16_t first, second; in read_test_data_s8() local
356 first = *ptr++; in read_test_data_s8()
359 if (neg_first && first < 0 && second > 0) { in read_test_data_s8()
361 } else if (!neg_first && first > 0 && second < 0) { in read_test_data_s8()
364 ml_printf("Error %d %c %d\n", first, neg_first ? '<' : '>', second); in read_test_data_s8()

1234567891011