1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#[cfg(target_arch = "x86")]
use core::arch::x86::*;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::*;
use core::mem;
use core::ops::*;
#[derive(Copy, Debug, Clone)]
pub struct I32x4(pub __m128i);
#[derive(Copy, Debug, Clone)]
pub struct I32x4_41(pub __m128i);
#[derive(Copy, Debug, Clone)]
pub struct I32x8(pub __m256i);
#[derive(Copy, Debug, Clone)]
pub struct I64x2(pub __m128i);
#[derive(Copy, Debug, Clone)]
pub struct I64x2_41(pub __m128i);
#[derive(Copy, Debug, Clone)]
pub struct I64x4(pub __m256i);
#[derive(Copy, Debug, Clone)]
pub struct F32x4(pub __m128);
#[derive(Copy, Debug, Clone)]
pub struct F32x8(pub __m256);
#[derive(Copy, Debug, Clone)]
pub struct F64x2(pub __m128d);
#[derive(Copy, Debug, Clone)]
pub struct F64x4(pub __m256d);
mod index;
pub use self::index::*;
mod index_mut;
pub use self::index_mut::*;
mod add;
pub use self::add::*;
mod add_assign;
pub use self::add_assign::*;
mod sub;
pub use self::sub::*;
mod sub_assign;
pub use self::sub_assign::*;
mod mul;
pub use self::mul::*;
mod mul_assign;
pub use self::mul_assign::*;
mod div;
pub use self::div::*;
mod div_assign;
pub use self::div_assign::*;
mod and;
pub use self::and::*;
mod and_assign;
pub use self::and_assign::*;
mod or;
pub use self::or::*;
mod or_assign;
pub use self::or_assign::*;
mod xor;
pub use self::xor::*;
mod xor_assign;
pub use self::xor_assign::*;