Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/memory/
H A Dmmap.rs81 let mut alloc_bytes = tunables.memory_reservation; in new() localVariable
84 if minimum_u64 <= alloc_bytes { in new()
86 if max <= alloc_bytes { in new()
91 alloc_bytes = minimum_u64.saturating_add(extra_to_reserve_on_growth); in new()
96 let alloc_bytes = HostAlignedByteCount::new_rounded_up_u64(alloc_bytes) in new() localVariable
103 .checked_add(alloc_bytes) in new()