Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/memory/
H A Dstatic_.rs5 use crate::runtime::vm::MemoryBase;
13 base: MemoryBase,
24 base: MemoryBase, in new() argument
73 fn base(&self) -> MemoryBase { in base() argument
H A Dmmap.rs10 use super::MemoryBase;
228 fn base(&self) -> MemoryBase { in base() argument
229 MemoryBase::Mmap( in base()
H A Dmalloc.rs9 use crate::runtime::vm::memory::{MemoryBase, RuntimeLinearMemory};
92 fn base(&self) -> MemoryBase { in base() argument
93 MemoryBase::Raw(self.base_ptr) in base()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dmemory.rs178 fn base(&self) -> MemoryBase; in base() argument
198 pub enum MemoryBase { enum
209 impl MemoryBase { impl
265 base: MemoryBase, in new_static() argument
598 MemoryBase::Mmap(offset) => offset, in new()
599 MemoryBase::Raw { .. } => { in new()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/trampoline/
H A Dmemory.rs7 MemoryBase, ModuleRuntimeInfo, OnDemandInstanceAllocator, RuntimeLinearMemory,
88 fn base(&self) -> MemoryBase { in base() argument
89 MemoryBase::new_raw(self.mem.as_ptr()) in base()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/pooling/
H A Dmemory_pool.rs59 CompiledModuleId, InstanceAllocationRequest, InstanceLimits, Memory, MemoryBase,
429 MemoryBase::Mmap(base), in allocate()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dvm.rs112 Memory, MemoryBase, RuntimeLinearMemory, RuntimeMemoryCreator, SharedMemory,