Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/memory/
H A Dmalloc.rs19 pub struct MallocMemory { struct
25 impl MallocMemory { impl
61 Ok(MallocMemory { in new()
69 impl RuntimeLinearMemory for MallocMemory { implementation
171 let mut memory = MallocMemory::new(&TY, &tunables(), 10).unwrap(); in simple()
198 let mut memory = MallocMemory::new(&TY, &tunables, 10).unwrap(); in reservation_not_initialized()
215 fn assert_valid(mem: &MallocMemory) { in assert_valid() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dmemory.rs97 pub use self::malloc::MallocMemory;
152 try_new::<Box<_>>(MallocMemory::new(ty, tunables, minimum)?)? in new_memory()