forked from RustCrypto/crypto-bigint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbit_and.rs
More file actions
144 lines (115 loc) · 4.01 KB
/
bit_and.rs
File metadata and controls
144 lines (115 loc) · 4.01 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
//! [`Int`] bitwise AND operations.
use core::ops::{BitAnd, BitAndAssign};
use crate::{ConstCtOption, Int, Limb, Uint, Wrapping};
impl<const LIMBS: usize> Int<LIMBS> {
/// Computes bitwise `a & b`.
#[inline(always)]
pub const fn bitand(&self, rhs: &Self) -> Self {
Self(Uint::bitand(&self.0, &rhs.0))
}
/// Perform bitwise `AND` between `self` and the given [`Limb`], performing the `AND` operation
/// on every limb of `self`.
pub const fn bitand_limb(&self, rhs: Limb) -> Self {
Self(Uint::bitand_limb(&self.0, rhs))
}
/// Perform wrapping bitwise `AND`.
///
/// There's no way wrapping could ever happen.
/// This function exists so that all operations are accounted for in the wrapping operations
pub const fn wrapping_and(&self, rhs: &Self) -> Self {
self.bitand(rhs)
}
/// Perform checked bitwise `AND`, returning a [`ConstCtOption`] which `is_some` always
pub const fn checked_and(&self, rhs: &Self) -> ConstCtOption<Self> {
ConstCtOption::some(self.bitand(rhs))
}
}
impl<const LIMBS: usize> BitAnd for Int<LIMBS> {
type Output = Self;
fn bitand(self, rhs: Self) -> Int<LIMBS> {
self.bitand(&rhs)
}
}
impl<const LIMBS: usize> BitAnd<&Int<LIMBS>> for Int<LIMBS> {
type Output = Int<LIMBS>;
#[allow(clippy::needless_borrow)]
fn bitand(self, rhs: &Int<LIMBS>) -> Int<LIMBS> {
(&self).bitand(rhs)
}
}
impl<const LIMBS: usize> BitAnd<Int<LIMBS>> for &Int<LIMBS> {
type Output = Int<LIMBS>;
fn bitand(self, rhs: Int<LIMBS>) -> Int<LIMBS> {
self.bitand(&rhs)
}
}
impl<const LIMBS: usize> BitAnd<&Int<LIMBS>> for &Int<LIMBS> {
type Output = Int<LIMBS>;
fn bitand(self, rhs: &Int<LIMBS>) -> Int<LIMBS> {
self.bitand(rhs)
}
}
impl<const LIMBS: usize> BitAndAssign for Int<LIMBS> {
#[allow(clippy::assign_op_pattern)]
fn bitand_assign(&mut self, other: Self) {
*self = *self & other;
}
}
impl<const LIMBS: usize> BitAndAssign<&Int<LIMBS>> for Int<LIMBS> {
#[allow(clippy::assign_op_pattern)]
fn bitand_assign(&mut self, other: &Self) {
*self = *self & other;
}
}
impl<const LIMBS: usize> BitAnd for Wrapping<Int<LIMBS>> {
type Output = Self;
fn bitand(self, rhs: Self) -> Wrapping<Int<LIMBS>> {
Wrapping(self.0.bitand(&rhs.0))
}
}
impl<const LIMBS: usize> BitAnd<&Wrapping<Int<LIMBS>>> for Wrapping<Int<LIMBS>> {
type Output = Wrapping<Int<LIMBS>>;
fn bitand(self, rhs: &Wrapping<Int<LIMBS>>) -> Wrapping<Int<LIMBS>> {
Wrapping(self.0.bitand(&rhs.0))
}
}
impl<const LIMBS: usize> BitAnd<Wrapping<Int<LIMBS>>> for &Wrapping<Int<LIMBS>> {
type Output = Wrapping<Int<LIMBS>>;
fn bitand(self, rhs: Wrapping<Int<LIMBS>>) -> Wrapping<Int<LIMBS>> {
Wrapping(self.0.bitand(&rhs.0))
}
}
impl<const LIMBS: usize> BitAnd<&Wrapping<Int<LIMBS>>> for &Wrapping<Int<LIMBS>> {
type Output = Wrapping<Int<LIMBS>>;
fn bitand(self, rhs: &Wrapping<Int<LIMBS>>) -> Wrapping<Int<LIMBS>> {
Wrapping(self.0.bitand(&rhs.0))
}
}
impl<const LIMBS: usize> BitAndAssign for Wrapping<Int<LIMBS>> {
#[allow(clippy::assign_op_pattern)]
fn bitand_assign(&mut self, other: Self) {
*self = *self & other;
}
}
impl<const LIMBS: usize> BitAndAssign<&Wrapping<Int<LIMBS>>> for Wrapping<Int<LIMBS>> {
#[allow(clippy::assign_op_pattern)]
fn bitand_assign(&mut self, other: &Self) {
*self = *self & other;
}
}
#[cfg(test)]
mod tests {
use crate::I128;
#[test]
fn checked_and_ok() {
assert_eq!(I128::ZERO.checked_and(&I128::ONE).unwrap(), I128::ZERO);
assert_eq!(I128::ONE.checked_and(&I128::ONE).unwrap(), I128::ONE);
assert_eq!(I128::MAX.checked_and(&I128::ONE).unwrap(), I128::ONE);
}
#[test]
fn wrapping_and_ok() {
assert_eq!(I128::ZERO.wrapping_and(&I128::ONE), I128::ZERO);
assert_eq!(I128::ONE.wrapping_and(&I128::ONE), I128::ONE);
assert_eq!(I128::MAX.wrapping_and(&I128::ONE), I128::ONE);
}
}