Home
last modified time | relevance | path

Searched refs:current_size (Results 1 – 7 of 7) sorted by relevance

/openbmc/qemu/tests/qemu-iotests/
H A D14660 echo === Testing VPC with current_size force ===
87 echo === Testing Hyper-V with current_size force ===
114 echo === Testing d2v with current_size force ===
156 echo === Read created image, force_size_calc=current_size ====
186 echo === Read created image, force_size_calc=current_size ====
H A D146.out7 === Testing VPC with current_size force ===
19 === Testing Hyper-V with current_size force ===
156 === Testing d2v with current_size force ===
426 === Read created image, force_size_calc=current_size ====
442 === Read created image, force_size_calc=current_size ====
/openbmc/qemu/tests/functional/qemu_test/
H A Dasset.py92 current_size = tmp_cache_file.stat().st_size
93 new_size = current_size
108 if new_size != current_size:
110 current_size = new_size
/openbmc/qemu/block/
H A Dvpc.c81 uint64_t current_size; member
171 "or use the disk current_size specified in the VHD footer. "
172 "{chs, current_size}"
210 } else if (!strcmp(size_calc, "current_size")) { in vpc_parse_options()
229 * the size is the footer->current_size to avoid truncation. Otherwise,
235 * 'qem2' : current_size QEMU (uses current_size)
236 * 'win ' : current_size Hyper-V
237 * 'd2v ' : current_size Disk2vhd
238 * 'tap\0' : current_size XenServe
[all...]
/openbmc/libpldm/src/dsp/
H A Dbios_table.c29 #define BUFFER_SIZE_EXPECT(current_size, expected_size) \ argument
31 if ((current_size) < (expected_size)) \
/openbmc/qemu/
H A Dqemu-img.c4203 int64_t n, total_size, current_size; in img_resize()
4357 current_size = blk_getlength(blk); in img_resize()
4358 if (current_size < 0) { in img_resize()
4360 strerror(-current_size)); in img_resize()
4366 total_size = current_size + n * relative; in img_resize()
4376 if (total_size <= current_size && prealloc != PREALLOC_MODE_OFF) { in img_resize()
4382 if (total_size < current_size && !shrink) { in img_resize()
4177 int64_t n, total_size, current_size; img_resize() local
H A Dblock.c606 int64_t current_size, in create_file_fallback_zero_first_sector() argument
615 bytes_to_clear = MIN(current_size, MAX(BDRV_SECTOR_SIZE, alignment)); in create_file_fallback_zero_first_sector()