Function core::arch::wasm32::u64x2_load_extend_u32x2

1.54.0 · source ·
pub unsafe fn u64x2_load_extend_u32x2(m: *const u32) -> v128
Available on target_family="wasm" and target feature simd128 and WebAssembly only.
Expand description

加载两个 32 位整数,零加载每个整数到 64 位 lane

Unsafety

这个内部函数是不安全的,因为它需要一个裸指针作为参数,并且指针必须有效才能从中加载 8 个字节。 注意这个指针没有对齐要求,因为这个内部函数执行了一个 1-aligned load.