Home
last modified time | relevance | path

Searched refs:dst_array (Results 1 – 4 of 4) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dlibcalls.rs1154 dst_array: u32, in array_copy()
1170 let dst_array = VMGcRef::from_raw_u32(dst_array).ok_or_else(|| Trap::NullReference)?; in array_copy() localVariable
1171 let dst_array = store.unwrap_gc_store_mut().clone_gc_ref(&dst_array); in array_copy() localVariable
1172 let dst_array = ArrayRef::from_cloned_gc_ref(&mut store, dst_array); in array_copy() localVariable
1178 let dst_array_len = dst_array._len(&store)?; in array_copy()
1199 dst_array._set(&mut store, dst_i, src_elem)?; in array_copy()
1205 dst_array._set(&mut store, dst_i, src_elem)?; in array_copy()
/wasmtime-44.0.1/crates/environ/src/
H A Dbuiltin.rs152 dst_array: u32,
/wasmtime-44.0.1/crates/cranelift/src/
H A Dfunc_environ.rs2778 dst_array: ir::Value, in translate_array_copy()
2789 &[vmctx, dst_array, dst_index, src_array, src_index, len], in translate_array_copy()
/wasmtime-44.0.1/crates/cranelift/src/translate/
H A Dcode_translator.rs2832 let (dst_array, dst_index, src_array, src_index, len) = environ.stacks.pop5(); in translate_operator()
2836 dst_array, in translate_operator()