Home
last modified time | relevance | path

Searched refs:rawsz (Results 1 – 3 of 3) sorted by relevance

/freebsd/usr.bin/mkimg/
H A Dvhd.c276 uint64_t imgsz, rawsz; in vhd_dyn_write() local
284 rawsz = image_get_size() * secsz; in vhd_dyn_write()
285 imgsz = (rawsz + VHD_BLOCK_SIZE - 1) & ~(VHD_BLOCK_SIZE - 1); in vhd_dyn_write()
287 vhd_make_footer(&footer, rawsz, VHD_DISK_TYPE_DYNAMIC, sizeof(footer)); in vhd_dyn_write()
332 nblks = rawsz / secsz; in vhd_dyn_write()
353 error = image_copyout_zeroes(fd, imgsz - rawsz); in vhd_dyn_write()
H A Dvhdx.c482 uint64_t imgsz, rawsz; in vhdx_write() local
485 rawsz = image_get_size() * secsz; in vhdx_write()
486 imgsz = (rawsz + PAYLOAD_BLOCK_SIZE - 1) & ~(PAYLOAD_BLOCK_SIZE - 1); in vhdx_write()
/freebsd/lib/geom/part/
H A Dgeom_part.c287 fmtsize(int64_t rawsz) in fmtsize() argument
291 humanize_number(buf, sizeof(buf), rawsz, "", HN_AUTOSCALE, in fmtsize()