Home
last modified time | relevance | path

Searched refs:max (Results 1 – 25 of 227) sorted by relevance

12345678910

/qemu/tests/qemu-iotests/
H A D184.out126 "bps-read-max": 0,
130 "iops-write-max": 0,
132 "bps-total-max": 0,
133 "bps-write-max": 0,
139 "iops-read-max": 0,
142 "iops-total-max": 0
153 "bps-read-max": 0,
159 "bps-total-max": 0,
160 "bps-write-max": 0,
166 "iops-read-max": 0,
[all …]
H A D17761 limits=align=4k,max-transfer=64k
67 limits=align=512,max-transfer=64k,opt-write-zero=$CLUSTER_SIZE
75 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
82 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
H A D20462 limits=align=4k,max-transfer=64k
68 limits=align=512,max-transfer=64k,opt-write-zero=$CLUSTER_SIZE
76 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
83 limits=align=512,opt-write-zero=15M,max-write-zero=15M,opt-discard=15M,max-discard=15M
H A D257.out33 … "job-id": "ref_backup_0", "sync": "full", "target": "ref_target_0", "x-perf": {"max-workers": 1}}}
80 … "job-id": "ref_backup_1", "sync": "full", "target": "ref_target_1", "x-perf": {"max-workers": 1}}}
218 … "job-id": "ref_backup_2", "sync": "full", "target": "ref_target_2", "x-perf": {"max-workers": 1}}}
302 … "job-id": "ref_backup_0", "sync": "full", "target": "ref_target_0", "x-perf": {"max-workers": 1}}}
349 … "job-id": "ref_backup_1", "sync": "full", "target": "ref_target_1", "x-perf": {"max-workers": 1}}}
425 … "job-id": "ref_backup_2", "sync": "full", "target": "ref_target_2", "x-perf": {"max-workers": 1}}}
509 … "job-id": "ref_backup_0", "sync": "full", "target": "ref_target_0", "x-perf": {"max-workers": 1}}}
556 … "job-id": "ref_backup_1", "sync": "full", "target": "ref_target_1", "x-perf": {"max-workers": 1}}}
694 … "job-id": "ref_backup_2", "sync": "full", "target": "ref_target_2", "x-perf": {"max-workers": 1}}}
778 … "job-id": "ref_backup_0", "sync": "full", "target": "ref_target_0", "x-perf": {"max-workers": 1}}}
[all …]
/qemu/tests/unit/
H A Dtest-throttle.c47 bkt.max = 15; in test_leak_bucket()
70 bkt.max = 250; in test_leak_bucket()
96 bkt.max = 15; in test_compute_wait()
103 bkt.max = 15; in test_compute_wait()
110 bkt.max = 15; in test_compute_wait()
117 bkt.max = 15; in test_compute_wait()
128 bkt.max = 200; in test_compute_wait()
484 b->max = 1; in test_ranges()
489 b->max = 1; in test_ranges()
494 b->max = 1; in test_ranges()
[all …]
H A Dtest-aio.c44 int max; member
51 int max; member
59 if (++data->n < data->max) { in bh_test_cb()
67 if (++data->n < data->max) { in timer_test_cb()
80 if (++data->n < data->max) { in bh_delete_cb()
189 while (data1.n < data1.max) { in test_bh_delete_from_cb()
226 while (data1.n < data1.max || in test_bh_delete_from_cb_many()
227 data2.n < data2.max || in test_bh_delete_from_cb_many()
228 data3.n < data3.max || in test_bh_delete_from_cb_many()
229 data4.n < data4.max) { in test_bh_delete_from_cb_many()
[all …]
H A Dtest-coroutine.c101 unsigned int max; /* maximum level of nesting */ member
110 if (nd->n_enter < nd->max) { in nest()
126 .max = 128, in test_nesting()
133 g_assert_cmpint(nd.n_enter, ==, nd.max); in test_nesting()
134 g_assert_cmpint(nd.n_return, ==, nd.max); in test_nesting()
517 unsigned int i, max; in perf_lifecycle() local
520 max = 1000000; in perf_lifecycle()
523 for (i = 0; i < max; i++) { in perf_lifecycle()
529 g_test_message("Lifecycle %u iterations: %f s", max, duration); in perf_lifecycle()
546 .max = maxnesting, in perf_nesting()
/qemu/util/
H A Dthrottle.c105 if (!bkt->max) { in throttle_compute_wait()
114 bucket_size = bkt->max * bkt->burst_length; in throttle_compute_wait()
115 burst_bucket_size = (double) bkt->max / 10; in throttle_compute_wait()
127 assert(bkt->max > 0); /* see throttle_is_valid() */ in throttle_compute_wait()
330 bps_max_flag = cfg->buckets[THROTTLE_BPS_TOTAL].max && in throttle_is_valid()
332 cfg->buckets[THROTTLE_BPS_WRITE].max); in throttle_is_valid()
336 cfg->buckets[THROTTLE_OPS_WRITE].max); in throttle_is_valid()
365 if (bkt->burst_length > 1 && !bkt->max) { in throttle_is_valid()
370 if (bkt->max && bkt->burst_length > THROTTLE_VALUE_MAX / bkt->max) { in throttle_is_valid()
375 if (bkt->max && !bkt->avg) { in throttle_is_valid()
[all …]
H A Dfifo8.c69 static const uint8_t *fifo8_peekpop_buf(Fifo8 *fifo, uint32_t max, in fifo8_peekpop_buf() argument
75 assert(max > 0 && max <= fifo->num); in fifo8_peekpop_buf()
76 num = MIN(fifo->capacity - fifo->head, max); in fifo8_peekpop_buf()
90 const uint8_t *fifo8_peek_buf(Fifo8 *fifo, uint32_t max, uint32_t *numptr) in fifo8_peek_buf() argument
92 return fifo8_peekpop_buf(fifo, max, numptr, false); in fifo8_peek_buf()
95 const uint8_t *fifo8_pop_buf(Fifo8 *fifo, uint32_t max, uint32_t *numptr) in fifo8_pop_buf() argument
97 return fifo8_peekpop_buf(fifo, max, numptr, true); in fifo8_pop_buf()
H A Dcpuinfo-i386.c24 unsigned max, a, b, c, d, b7 = 0, c7 = 0; in cpuinfo_init() local
26 max = __get_cpuid_max(0, 0); in cpuinfo_init()
28 if (max >= 7) { in cpuinfo_init()
34 if (max >= 1) { in cpuinfo_init()
93 max = __get_cpuid_max(0x8000000, 0); in cpuinfo_init()
94 if (max >= 1) { in cpuinfo_init()
H A Dtimed-average.c75 w->max = 0; in window_reset()
177 if (value > w->max) { in timed_average_account()
178 w->max = value; in timed_average_account()
217 return current_window(ta)->max; in timed_average_max()
H A Dqemu-progress.c142 void qemu_progress_print(float delta, int max) in qemu_progress_print() argument
146 if (max == 0) { in qemu_progress_print()
149 current = state.current + delta / 100 * max; in qemu_progress_print()
/qemu/tests/tcg/xtensa/
H A Dtest_max.S3 test_suite max
7 test max
11 max a5, a2, a3
17 max a5, a2, a3
23 max a2, a2, a3
29 max a3, a2, a3
35 max a2, a2, a3
41 max a3, a2, a3
/qemu/tests/tcg/multiarch/system/
H A Dmemory.c117 const int max = (TEST_SIZE - offset) / sizeof(word); in init_test_data_u16() local
124 for (i = 0; i < max; i++) { in init_test_data_u16()
144 for (i = 0; i < max; i++) { in init_test_data_u32()
166 for (i = 0; i < max; i++) { in init_test_data_u64()
188 for (i = 0; i < max; i++) { in read_test_data_u16()
213 for (i = 0; i < max; i++) { in read_test_data_u32()
254 for (i = 0; i < max; i++) { in read_test_data_u64()
349 const int max = (TEST_SIZE - offset) / 2; in read_test_data_s8() local
353 for (i = 0; i < max; i++) { in read_test_data_s8()
389 for (i = 0; i < max; i++) { in read_test_data_s16()
[all …]
/qemu/tests/tcg/i386/
H A DMakefile.target20 run-test-i386-sse-exceptions: QEMU_OPTS += -cpu max
23 run-test-i386-pcmpistri: QEMU_OPTS += -cpu max
26 run-test-i386-bmi2: QEMU_OPTS += -cpu max
29 run-test-i386-adcox: QEMU_OPTS += -cpu max
33 run-test-aes: QEMU_OPTS += -cpu max
78 run-sha512-sse: QEMU_OPTS+=-cpu max
93 run-test-3dnow: QEMU_OPTS += -cpu max
97 run-test-mmx: QEMU_OPTS += -cpu max
101 run-test-avx: QEMU_OPTS += -cpu max
/qemu/hw/s390x/
H A Ds390-stattrib-kvm.c88 unsigned long max = machine->ram_size / TARGET_PAGE_SIZE; in kvm_s390_stattrib_set_stattr() local
90 if (start_gfn + count > max) { in kvm_s390_stattrib_set_stattr()
95 sas->incoming_buffer = g_malloc0(max); in kvm_s390_stattrib_set_stattr()
107 unsigned long max = machine->ram_size / TARGET_PAGE_SIZE; in kvm_s390_stattrib_synchronize() local
117 for (cx = 0; cx + len <= max; cx += len) { in kvm_s390_stattrib_synchronize()
127 if (cx < max) { in kvm_s390_stattrib_synchronize()
129 clog.count = max - cx; in kvm_s390_stattrib_synchronize()
/qemu/ui/
H A Dvnc-palette.c55 VncPalette *palette_new(size_t max, int bpp) in palette_new() argument
60 palette_init(palette, max, bpp); in palette_new()
64 void palette_init(VncPalette *palette, size_t max, int bpp) in palette_init() argument
67 palette->max = max; in palette_init()
85 if (!entry && palette->size >= palette->max) { in palette_put()
H A Dvnc-palette.h46 size_t max; member
51 VncPalette *palette_new(size_t max, int bpp);
52 void palette_init(VncPalette *palette, size_t max, int bpp);
H A Dvnc-enc-tight.c211 int max[3], shift[3]; \
223 max[0] = vs->client_pf.rmax; \
224 max[1] = vs->client_pf.gmax; \
225 max[2] = vs->client_pf.bmax; \
241 left[c] = (int)(pix >> shift[c] & max[c]); \
424 int max; in tight_fill_palette() local
427 if (max < 2 && in tight_fill_palette()
429 max = 2; in tight_fill_palette()
431 if (max >= 256) { in tight_fill_palette()
432 max = 256; in tight_fill_palette()
[all …]
/qemu/fsdev/
H A Dqemu-fsdev-throttle.c50 fst->cfg.buckets[THROTTLE_BPS_TOTAL].max = in fsdev_throttle_parse_opts()
52 fst->cfg.buckets[THROTTLE_BPS_READ].max = in fsdev_throttle_parse_opts()
54 fst->cfg.buckets[THROTTLE_BPS_WRITE].max = in fsdev_throttle_parse_opts()
56 fst->cfg.buckets[THROTTLE_OPS_TOTAL].max = in fsdev_throttle_parse_opts()
58 fst->cfg.buckets[THROTTLE_OPS_READ].max = in fsdev_throttle_parse_opts()
60 fst->cfg.buckets[THROTTLE_OPS_WRITE].max = in fsdev_throttle_parse_opts()
/qemu/system/
H A Ddirtylimit.c259 uint64_t min, max; in dirtylimit_done() local
262 max = MAX(quota, current); in dirtylimit_done()
264 return ((max - min) <= DIRTYLIMIT_TOLERANCE_RANGE) ? true : false; in dirtylimit_done()
271 uint64_t min, max; in dirtylimit_need_linear_adjustment() local
274 max = MAX(quota, current); in dirtylimit_need_linear_adjustment()
276 return ((max - min) * 100 / max) > DIRTYLIMIT_LINEAR_ADJUSTMENT_PCT; in dirtylimit_need_linear_adjustment()
575 int64_t max = 0; in dirtylimit_throttle_time_per_round() local
578 if (cpu->throttle_us_per_full > max) { in dirtylimit_throttle_time_per_round()
579 max = cpu->throttle_us_per_full; in dirtylimit_throttle_time_per_round()
583 return max; in dirtylimit_throttle_time_per_round()
/qemu/docs/
H A Dthrottle.txt93 throttling.iops-total-max=2000,
94 throttling.iops-total-max-length=60
119 are not allowed. 'iops-total-max-length' can only be set if
127 | throttling.iops-total-max | iops_max |
128 | throttling.iops-total-max-length | iops_max_length |
129 | throttling.iops-read-max | iops_rd_max |
130 | throttling.iops-read-max-length | iops_rd_max_length |
131 | throttling.iops-write-max | iops_wr_max |
232 iops-total-max=2000
233 iops-total-max-length=60
[all …]
/qemu/tests/bench/
H A Dbufferiszero-bench.c14 size_t max = 64 * KiB; in test() local
15 void *buf = g_malloc0(max); in test()
22 for (size_t len = 1 * KiB; len <= max; len *= 4) { in test()
/qemu/target/arm/tcg/
H A Dgengvec64.c198 TCGv_i64 max = tcg_constant_i64((1ull << ((8 << esz) - 1)) - 1); in gen_suqadd_bhs() local
202 tcg_gen_smin_i64(res, t, max); in gen_suqadd_bhs()
209 TCGv_i64 max = tcg_constant_i64(INT64_MAX); in gen_suqadd_d() local
213 tcg_gen_sub_i64(t, max, a); in gen_suqadd_d()
226 TCGv_vec max = in gen_suqadd_vec() local
231 tcg_gen_sub_vec(vece, u, max, a); in gen_suqadd_vec()
281 TCGv_i64 max = tcg_constant_i64(MAKE_64BIT_MASK(0, 8 << esz)); in gen_usqadd_bhs() local
286 tcg_gen_smin_i64(res, tmp, max); in gen_usqadd_bhs()
297 TCGv_i64 max = tcg_constant_i64(UINT64_MAX); in gen_usqadd_d() local
303 tcg_gen_movcond_i64(TCG_COND_LTU, tpos, tmp, a, max, tmp); in gen_usqadd_d()
/qemu/docs/system/arm/
H A Dcpu-features.rst46 "model": { "name": "max", "props": {
66 "model": { "name": "max", "props": {
92 "model": { "name": "max", "props": {
323 $ qemu-system-aarch64 -M virt -cpu max,sve=off
327 $ qemu-system-aarch64 -M virt -cpu max
336 $ qemu-system-aarch64 -M virt -cpu max,sve128=on
342 $ qemu-system-aarch64 -M virt -cpu max,sve512=off
352 $ qemu-system-aarch64 -M virt -cpu max,sve512=on
377 $ qemu-system-aarch64 -M virt -cpu max,sme=off
381 $ qemu-system-aarch64 -M virt -cpu max
[all …]

12345678910