MCPcopy Create free account
hub / github.com/Rust-GPU/rust-gpu / memmove

Method memmove

crates/rustc_codegen_spirv/src/builder/builder_methods.rs:1970–1980  ·  view source on GitHub ↗
(
        &mut self,
        dst: Self::Value,
        dst_align: Align,
        src: Self::Value,
        src_align: Align,
        size: Self::Value,
        flags: MemFlags,
    )

Source from the content-addressed store, hash-verified

1968 }
1969
1970 fn memmove(
1971 &mut self,
1972 dst: Self::Value,
1973 dst_align: Align,
1974 src: Self::Value,
1975 src_align: Align,
1976 size: Self::Value,
1977 flags: MemFlags,
1978 ) {
1979 self.memcpy(dst, dst_align, src, src_align, size, flags);
1980 }
1981
1982 fn memset(
1983 &mut self,

Callers

nothing calls this directly

Calls 1

memcpyMethod · 0.80

Tested by

no test coverage detected