Home
last modified time | relevance | path

Searched refs:async_stack_keep_resident (Results 1 – 9 of 9) sorted by relevance

/wasmtime-44.0.1/crates/fuzzing/src/generators/
H A Dpooling_config.rs33 pub async_stack_keep_resident: usize, field
67 cfg.opts.pooling_async_stack_keep_resident = Some(self.async_stack_keep_resident); in configure()
113 async_stack_keep_resident: u.int_in_range(0..=1 << 20)?, in arbitrary()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/pooling/
H A Dunix_stack_pool.rs28 async_stack_keep_resident: HostAlignedByteCount, field
85 async_stack_keep_resident: HostAlignedByteCount::new_rounded_up( in new()
86 config.async_stack_keep_resident, in new()
194 let size_to_memset = stack_size.min(self.async_stack_keep_resident); in zero_stack()
/wasmtime-44.0.1/crates/c-api/include/wasmtime/
H A Dconfig.h648 WASMTIME_POOLING_ALLOCATION_CONFIG_PROP(async_stack_keep_resident, size_t)
H A Dconfig.hh81 void async_stack_keep_resident(size_t size) { in async_stack_keep_resident() function in wasmtime::PoolAllocationConfig
/wasmtime-44.0.1/crates/c-api/tests/
H A Dconfig.cc11 config.async_stack_keep_resident(3); in TEST()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/
H A Dpooling.rs218 pub async_stack_keep_resident: usize, field
247 async_stack_keep_resident: 0, in default()
/wasmtime-44.0.1/crates/wasmtime/src/
H A Dconfig.rs3573 pub fn async_stack_keep_resident(&mut self, size: usize) -> &mut Self { in async_stack_keep_resident() method
3574 self.config.async_stack_keep_resident = size; in async_stack_keep_resident()
/wasmtime-44.0.1/crates/c-api/src/
H A Dconfig.rs535 c.config.async_stack_keep_resident(size); in wasmtime_pooling_allocation_config_async_stack_keep_resident_set()
/wasmtime-44.0.1/crates/cli-flags/src/
H A Dlib.rs991 size => cfg.async_stack_keep_resident(size), in config()