Home
last modified time | relevance | path

Searched refs:U32x2 (Results 1 – 3 of 3) sorted by relevance

/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/pathfinder_simd-0.5.0/src/scalar/
H A Dmod.rs82 U32x2([ in packed_eq()
90 U32x2([ in packed_gt()
98 U32x2([ in packed_lt()
106 U32x2([ in packed_le()
506 U32x2([ in packed_eq()
514 U32x2([ in packed_gt()
522 U32x2([ in packed_le()
530 U32x2([ in packed_lt()
808 pub struct U32x2(pub [u32; 2]); struct
810 impl U32x2 { implementation
[all …]
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/pathfinder_simd-0.5.0/src/arm/
H A Dmod.rs84 pub fn packed_eq(self, other: F32x2) -> U32x2 { in packed_eq() argument
85 unsafe { U32x2(simd_eq(self.0, other.0)) } in packed_eq()
89 pub fn packed_gt(self, other: F32x2) -> U32x2 { in packed_gt() argument
90 unsafe { U32x2(simd_gt(self.0, other.0)) } in packed_gt()
94 pub fn packed_lt(self, other: F32x2) -> U32x2 { in packed_lt() argument
95 unsafe { U32x2(simd_lt(self.0, other.0)) } in packed_lt()
99 pub fn packed_le(self, other: F32x2) -> U32x2 { in packed_le() argument
100 unsafe { U32x2(simd_le(self.0, other.0)) } in packed_le()
723 pub struct U32x2(pub uint32x2_t); struct
725 impl U32x2 { implementation
[all …]
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/pathfinder_simd-0.5.0/src/x86/
H A Dmod.rs95 pub fn packed_eq(self, other: F32x2) -> U32x2 { in packed_eq() argument
100 pub fn packed_gt(self, other: F32x2) -> U32x2 { in packed_gt() argument
105 pub fn packed_lt(self, other: F32x2) -> U32x2 { in packed_lt() argument
110 pub fn packed_le(self, other: F32x2) -> U32x2 { in packed_le() argument
817 pub struct U32x2(pub u64); struct
819 impl U32x2 { implementation
893 pub fn xy(self) -> U32x2 { in xy() argument
896 U32x2(*mem::transmute::<&__m128i, &u64>(&swizzled)) in xy()