Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dcomponent.rs428 pub fn runtime_realloc(&self, idx: RuntimeReallocIndex) -> NonNull<VMFuncRef> { in runtime_realloc() method
430 let ret = *self.vmctx_plus_offset::<VmPtr<_>>(self.offsets.runtime_realloc(idx)); in runtime_realloc()
537 let offset = self.offsets.runtime_realloc(idx); in set_runtime_realloc()
758 let offset = self.offsets.runtime_realloc(i); in initialize_vmctx()
/wasmtime-44.0.1/crates/environ/src/component/
H A Dvmcomponent_offsets.rs342 pub fn runtime_realloc(&self, index: RuntimeReallocIndex) -> u32 { in runtime_realloc() method
H A Ddfg.rs841 realloc: realloc.map(|mem| self.runtime_realloc(mem)), in convert_options()
878 fn runtime_realloc(&mut self, realloc: ReallocId) -> RuntimeReallocIndex { in runtime_realloc() method
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/func/
H A Doptions.rs152 let realloc = instance.runtime_realloc(realloc); in realloc()