Home
last modified time | relevance | path

Searched refs:write_bytes (Results 1 – 11 of 11) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/sys/miri/
H A Dvm.rs10 std::ptr::write_bytes(ptr, 0u8, len); in expose_existing_mapping()
17 std::ptr::write_bytes(ptr, 0, len); in hide_existing_mapping()
24 std::ptr::write_bytes(ptr, 0, len); in erase_existing_mapping()
32 std::ptr::write_bytes(ptr, 0, len); in commit_pages()
39 std::ptr::write_bytes(ptr, 0, len); in decommit_pages()
H A Dmmap.rs88 std::ptr::write_bytes( in make_accessible()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/memory/
H A Dmalloc.rs140 core::ptr::write_bytes(slice_to_initialize.as_mut_ptr().cast::<u8>(), 0, byte_size); in grow_storage_to()
/wasmtime-44.0.1/crates/wasmtime/src/compile/
H A Druntime.rs239 fn write_bytes(&mut self, val: &[u8]) { in finish_object() method
/wasmtime-44.0.1/crates/wasi/src/
H A Dp1.rs1162 fn write_bytes( in write_bytes() function
1206 let argv_buf = write_bytes(memory, argv_buf, arg.as_bytes())?; in args_get()
1252 let environ_buf = write_bytes(memory, environ_buf, k.as_bytes())?; in environ_get()
1254 let environ_buf = write_bytes(memory, environ_buf, v.as_bytes())?; in environ_get()
1849 write_bytes(memory, path, p.as_bytes())?; in fd_prestat_dir_name()
2023 buf = write_bytes(memory, buf, entry)?; in fd_readdir()
2033 buf = write_bytes(memory, buf, &path)?; in fd_readdir()
2241 write_bytes(memory, buf, &path)?; in path_readlink()
2655 write_bytes(memory, buf, &rand)?; in random_get()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/pooling/
H A Dunix_stack_pool.rs202 std::ptr::write_bytes( in zero_stack()
/wasmtime-44.0.1/crates/environ/src/compile/
H A Dmodule_artifacts.rs334 fn write_bytes(&mut self, val: &[u8]) { in finish_object() method
/wasmtime-44.0.1/cranelift/jit/src/
H A Dcompiled_blob.rs79 unsafe { ptr::write_bytes(ptr, 0, size) }; in new_zeroed()
/wasmtime-44.0.1/tests/all/
H A Dpooling_allocator.rs229 std::ptr::write_bytes(ptr, 0xFE, memory.data_size(&store)); in memory_zeroed()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dinstance.rs1149 ptr::write_bytes(dst, val, len); in memory_fill()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/func/
H A Dtyped.rs2577 map_maybe_uninit!(dst.A2).as_mut_ptr().write_bytes(0u8, 1); in linear_lower_to_flat()