Home
last modified time | relevance | path

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

/wasmtime-44.0.1/tests/all/
H A Dmemory_creator.rs57 unsafe impl LinearMemory for CustomMemory {
107 ) -> Result<Box<dyn LinearMemory>, String> { in new_memory() argument
/wasmtime-44.0.1/crates/environ/src/
H A Dfact.rs173 LinearMemory(LinearMemoryOptions), enumerator
181 DataModel::LinearMemory(opts) => opts, in unwrap_memory()
348 crate::component::DataModel::LinearMemory { in import_options()
381 DataModel::LinearMemory(LinearMemoryOptions { in import_options()
910 DataModel::LinearMemory(mem_opts) => Some(if mem_opts.memory64 { in flat_types()
/wasmtime-44.0.1/crates/environ/src/fact/
H A Dtrampoline.rs1609 DataModel::LinearMemory(opts) => opts, in translate_string()
1613 DataModel::LinearMemory(opts) => opts, in translate_string()
1897 DataModel::LinearMemory(opts) => opts, in string_deflate_to_utf8()
1901 DataModel::LinearMemory(opts) => opts, in string_deflate_to_utf8()
2094 DataModel::LinearMemory(opts) => opts, in string_utf8_to_utf16()
2098 DataModel::LinearMemory(opts) => opts, in string_utf8_to_utf16()
2182 DataModel::LinearMemory(opts) => opts, in string_compact_utf16_to_compact()
2186 DataModel::LinearMemory(opts) => opts, in string_compact_utf16_to_compact()
2271 DataModel::LinearMemory(opts) => opts, in string_to_compact()
2275 DataModel::LinearMemory(opts) => opts, in string_to_compact()
[all …]
/wasmtime-44.0.1/crates/wasmtime/src/runtime/trampoline/
H A Dmemory.rs2 use crate::memory::{LinearMemory, MemoryCreator};
72 mem: Box<dyn LinearMemory>,
/wasmtime-44.0.1/crates/environ/src/component/translate/
H A Dadapt.rs152 LinearMemory { enumerator
419 DataModel::LinearMemory { in adapter_options()
H A Dinline.rs1564 LocalDataModel::LinearMemory { memory, realloc } => { in adapter_options()
1572 DataModel::LinearMemory { in adapter_options()
1606 DataModel::LinearMemory { in canonical_options()
1610 } => dfg::CanonicalOptionsDataModel::LinearMemory { in canonical_options()
/wasmtime-44.0.1/crates/c-api/src/
H A Dconfig.rs10 Config, InstanceAllocationStrategy, LinearMemory, MemoryCreator, OptLevel, ProfilingStrategy,
350 unsafe impl LinearMemory for CHostLinearMemory {
404 ) -> Result<Box<dyn wasmtime::LinearMemory>, String> { in new_memory() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dmemory.rs709 pub unsafe trait LinearMemory: Send + Sync + 'static { trait
781 ) -> Result<Box<dyn LinearMemory>, String>; in new_memory() argument
/wasmtime-44.0.1/crates/environ/src/component/
H A Dinfo.rs517 LinearMemory(LinearMemoryOptions), enumerator
555 CanonicalOptionsDataModel::LinearMemory(opts) => opts.memory, in memory()
H A Dtranslate.rs411 LinearMemory { enumerator
919 data_model: LocalDataModel::LinearMemory { in translate_payload()
940 data_model: LocalDataModel::LinearMemory { in translate_payload()
1622 LocalDataModel::LinearMemory { memory, realloc } in canonical_options()
H A Ddfg.rs533 LinearMemory { enumerator
838 CanonicalOptionsDataModel::LinearMemory { memory, realloc } => { in convert_options()
839 info::CanonicalOptionsDataModel::LinearMemory(LinearMemoryOptions { in convert_options()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/func/
H A Doptions.rs150 CanonicalOptionsDataModel::LinearMemory(m) => m.realloc.unwrap(), in realloc()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dinstance.rs470 CanonicalOptionsDataModel::LinearMemory(o) => match o.memory { in options_memory_raw()
H A Dconcurrent.rs2944 CanonicalOptionsDataModel::LinearMemory(opts) => match opts.memory { in task_return()