Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/pooling/
H A Dtable_pool.rs2 TableAllocationIndex,
100 fn get(&self, table_index: TableAllocationIndex) -> *mut u8 { in get()
137 ) -> Result<(TableAllocationIndex, Table)> { in allocate() argument
142 .map(|slot| TableAllocationIndex(slot.0)) in allocate()
173 allocation_index: TableAllocationIndex, in allocate()
201 allocation_index: TableAllocationIndex, in deallocate() argument
227 allocation_index: TableAllocationIndex, in reset_table_pages_to_zero() argument
287 let index = TableAllocationIndex(i); in test_table_pool()
H A Ddecommit_queue.rs12 use crate::vm::{MemoryAllocationIndex, MemoryImageSlot, Table, TableAllocationIndex};
56 tables: SmallVec<[(TableAllocationIndex, Table, usize); 1]>,
141 allocation_index: TableAllocationIndex, in push_table() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/
H A Don_demand.rs2 InstanceAllocationRequest, InstanceAllocator, MemoryAllocationIndex, TableAllocationIndex,
159 ) -> Pin<Box<dyn Future<Output = Result<(TableAllocationIndex, Table)>> + Send + 'a>> { in allocate_table()
161 let allocation_index = TableAllocationIndex::default(); in allocate_table()
175 allocation_index: TableAllocationIndex, in deallocate_table() argument
178 debug_assert_eq!(allocation_index, TableAllocationIndex::default()); in deallocate_table()
H A Dpooling.rs48 InstanceAllocationRequest, InstanceAllocator, MemoryAllocationIndex, TableAllocationIndex,
777 ) -> Pin<Box<dyn Future<Output = Result<(super::TableAllocationIndex, Table)>> + Send + 'a>> in allocate_table()
807 allocation_index: TableAllocationIndex, in deallocate_table() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/
H A Dallocator.rs84 pub struct TableAllocationIndex(u32); struct
86 impl Default for TableAllocationIndex { implementation
90 TableAllocationIndex(u32::MAX) in default()
94 impl TableAllocationIndex { impl
221 ) -> Pin<Box<dyn Future<Output = Result<(TableAllocationIndex, Table)>> + Send + 'a>>; in allocate_table()
233 allocation_index: TableAllocationIndex, in deallocate_table() argument
360 tables: TryPrimaryMap<DefinedTableIndex, (TableAllocationIndex, Table)>, in allocate_module()
457 tables: &mut TryPrimaryMap<DefinedTableIndex, (TableAllocationIndex, Table)>, in allocate_tables() argument
486 tables: &mut TryPrimaryMap<DefinedTableIndex, (TableAllocationIndex, Table)>, in deallocate_tables() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/trampoline/
H A Dmemory.rs8 RuntimeMemoryCreator, SharedMemory, Table, TableAllocationIndex,
215 ) -> Pin<Box<dyn Future<Output = Result<(TableAllocationIndex, Table)>> + Send + 'a>> { in allocate_table()
222 allocation_index: TableAllocationIndex, in deallocate_table() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dinstance.rs129 tables: TryPrimaryMap<DefinedTableIndex, (TableAllocationIndex, Table)>,
170 tables: TryPrimaryMap<DefinedTableIndex, (TableAllocationIndex, Table)>, in new() argument
1648 ) -> &mut TryPrimaryMap<DefinedTableIndex, (TableAllocationIndex, Table)> { in tables_mut() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dvm.rs103 MemoryAllocationIndex, OnDemandInstanceAllocator, TableAllocationIndex, initialize_instance,