Lines Matching defs:Self
122 fn rotate_left(self, n: u32) -> Self; in rotate_left()
137 fn rotate_right(self, n: u32) -> Self; in rotate_right()
154 fn signed_shl(self, n: u32) -> Self; in signed_shl()
171 fn signed_shr(self, n: u32) -> Self; in signed_shr()
188 fn unsigned_shl(self, n: u32) -> Self; in unsigned_shl()
205 fn unsigned_shr(self, n: u32) -> Self; in unsigned_shr()
219 fn swap_bytes(self) -> Self; in swap_bytes()
238 fn from_be(x: Self) -> Self; in from_be()
257 fn from_le(x: Self) -> Self; in from_le()
276 fn to_be(self) -> Self; in to_be()
295 fn to_le(self) -> Self; in to_le()
306 fn pow(self, exp: u32) -> Self; in pow()