Lines Matching defs:Self
154 fn rotate_left(self, n: u32) -> Self; in rotate_left()
169 fn rotate_right(self, n: u32) -> Self; in rotate_right()
186 fn signed_shl(self, n: u32) -> Self; in signed_shl()
203 fn signed_shr(self, n: u32) -> Self; in signed_shr()
220 fn unsigned_shl(self, n: u32) -> Self; in unsigned_shl()
237 fn unsigned_shr(self, n: u32) -> Self; in unsigned_shr()
251 fn swap_bytes(self) -> Self; in swap_bytes()
269 fn reverse_bits(self) -> Self { in reverse_bits()
290 fn from_be(x: Self) -> Self; in from_be()
309 fn from_le(x: Self) -> Self; in from_le()
328 fn to_be(self) -> Self; in to_be()
347 fn to_le(self) -> Self; in to_le()
358 fn pow(self, exp: u32) -> Self; in pow()