| /wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/pooling/ |
| H A D | table_pool.rs | 2 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 D | decommit_queue.rs | 12 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 D | on_demand.rs | 2 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 D | pooling.rs | 48 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 D | allocator.rs | 84 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 D | memory.rs | 8 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 D | instance.rs | 129 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 D | vm.rs | 103 MemoryAllocationIndex, OnDemandInstanceAllocator, TableAllocationIndex, initialize_instance,
|