Searched refs:current_size (Results 1 - 3 of 3) sorted by relevance

/fuchsia/zircon/system/ulib/memfs/
H A Dmemfs.cpp67 zx_status_t Vfs::GrowVMO(zx::vmo& vmo, size_t current_size, argument
69 if (request_size <= current_size) {
70 *actual_size = current_size;
74 ZX_DEBUG_ASSERT(current_size % kPageSize == 0);
75 size_t num_new_pages = (aligned_len - current_size) / kPageSize;
77 *actual_size = current_size;
/fuchsia/zircon/system/utest/blobfs-bench/
H A Dblobfs-bench.cpp91 size_t current_size = size_in_bytes; local
94 current_size >= (1u << (10 * (current_unit + 1)))) {
95 current_size = current_size / (1 << 10 * current_unit);
/fuchsia/zircon/system/ulib/memfs/include/lib/memfs/cpp/
H A Dvnode.h227 // |current_size| is the current size of the VMO in number of bytes. It should be
231 zx_status_t GrowVMO(zx::vmo& vmo, size_t current_size,

Completed in 27 milliseconds