Searched refs:vec256_storage (Results 1 – 6 of 6) sorted by relevance
/external/rust/crates/ppv-lite86/src/ |
D | types.rs | 56 use crate::arch::{vec128_storage, vec256_storage, vec512_storage}; 130 + Store<vec256_storage> 134 + Into<vec256_storage> 139 + Store<vec256_storage> 144 + Into<vec256_storage> 149 + Store<vec256_storage> 155 + Into<vec256_storage> 160 + Store<vec256_storage> 164 + Into<vec256_storage>
|
D | soft.rs | 4 use crate::{vec128_storage, vec256_storage, vec512_storage}; 130 impl<W: Copy + Store<vec128_storage>, G> Store<vec256_storage> for x2<W, G> { 132 unsafe fn unpack(p: vec256_storage) -> Self { in unpack() 137 impl<W, G> From<x2<W, G>> for vec256_storage implementation 144 vec256_storage::new128([x.0[0].into(), x.0[1].into()]) in from()
|
D | lib.rs | 25 pub use self::arch::{vec128_storage, vec256_storage, vec512_storage};
|
D | generic.rs | 51 pub struct vec256_storage { struct 54 impl vec256_storage { argument 64 impl From<vec256_storage> for [u64; 4] { 66 fn from(q: vec256_storage) -> Self { in from()
|
/external/rust/crates/ppv-lite86/src/x86_64/ |
D | mod.rs | 150 pub union vec256_storage { 157 impl Into<vec256_storage> for [u64; 4] { 159 fn into(self) -> vec256_storage { in into() argument 160 vec256_storage { u64x4: self } in into() 163 impl Default for vec256_storage { implementation 166 vec256_storage { u128x2: [0, 0] } in default() 169 impl vec256_storage { impl 177 impl Eq for vec256_storage {} implementation 178 impl PartialEq for vec256_storage { implementation 192 avx: [vec256_storage; 2], [all …]
|
D | sse2.rs | 1380 use crate::x86_64::{vec256_storage, vec512_storage, Avx2Machine, YesS3, YesS4}; 1544 vec256_storage { avx: x.x[0] }, in from() 1545 vec256_storage { avx: x.x[1] }, in from()
|