Home
last modified time | relevance | path

Searched refs:vec512_storage (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/ppv-lite86/src/
Dtypes.rs56 use crate::arch::{vec128_storage, vec256_storage, vec512_storage};
170 + Store<vec512_storage>
175 + Into<vec512_storage>
180 + Store<vec512_storage>
184 + Into<vec512_storage>
190 + Store<vec512_storage>
194 + Into<vec512_storage>
Dsoft.rs4 use crate::{vec128_storage, vec256_storage, vec512_storage};
313 impl<W: Copy + Store<vec128_storage>> Store<vec512_storage> for x4<W> {
315 unsafe fn unpack(p: vec512_storage) -> Self { in unpack()
325 impl<W> From<x4<W>> for vec512_storage implementation
332 vec512_storage::new128([x.0[0].into(), x.0[1].into(), x.0[2].into(), x.0[3].into()]) in from()
Dlib.rs25 pub use self::arch::{vec128_storage, vec256_storage, vec512_storage};
Dgeneric.rs73 pub struct vec512_storage { struct
76 impl vec512_storage { implementation
/external/rust/crates/ppv-lite86/src/x86_64/
Dmod.rs187 pub union vec512_storage {
194 impl Default for vec512_storage { implementation
197 vec512_storage { in default()
202 impl vec512_storage { implementation
210 impl Eq for vec512_storage {} implementation
211 impl PartialEq for vec512_storage { implementation
234 impl_into!(vec512_storage, [u32; 16], u32x16);
235 impl_into!(vec512_storage, [u64; 8], u64x8);
236 impl_into!(vec512_storage, [u128; 4], u128x4);
Dsse2.rs1380 use crate::x86_64::{vec256_storage, vec512_storage, Avx2Machine, YesS3, YesS4};
1399 impl<NI> Store<vec512_storage> for u32x4x4_avx2<NI> {
1401 unsafe fn unpack(p: vec512_storage) -> Self { in unpack()
1539 impl<NI> From<u32x4x4_avx2<NI>> for vec512_storage { implementation