Lines Matching refs:src_table
376 src_table: &Table, in copy()
383 let src_ty = src_table.ty(&store); in copy()
394 Self::copy_raw(store, dst_table, dst_index, src_table, src_index, len)?; in copy()
413 src_table: &Table, in copy_raw()
420 src_table.wasmtime_table(store, src_range); in copy_raw()
432 let src_instance = src_table.instance.instance(); in copy_raw()
436 src_table.index == dst_table.index, in copy_raw()
448 src_instance.get_defined_table(src_table.index).copy_to( in copy_raw()
462 let [(_, src_table), (_, dst_table)] = instance in copy_raw()
464 .get_disjoint_mut([src_table.index, dst_table.index]) in copy_raw()
466 src_table.copy_to(dst_table, gc_store, dst_index, src_index, len) in copy_raw()
473 .get_defined_table(src_table.index) in copy_raw()