Searched refs:rotate_u128_right (Results 1 – 1 of 1) sorted by relevance
/external/rust/crates/ppv-lite86/src/ |
D | generic.rs | 370 fn rotate_u128_right(x: u128, i: u32) -> u128 { in rotate_u128_right() function 376 assert_eq!(rotate_u128_right(X, 17), X.rotate_right(17)); in test_rotate_u128() 382 Self([rotate_u128_right(self.0[0], 7)]) in rotate_each_word_right7() 386 Self([rotate_u128_right(self.0[0], 8)]) in rotate_each_word_right8() 390 Self([rotate_u128_right(self.0[0], 11)]) in rotate_each_word_right11() 394 Self([rotate_u128_right(self.0[0], 12)]) in rotate_each_word_right12() 398 Self([rotate_u128_right(self.0[0], 16)]) in rotate_each_word_right16() 402 Self([rotate_u128_right(self.0[0], 20)]) in rotate_each_word_right20() 406 Self([rotate_u128_right(self.0[0], 24)]) in rotate_each_word_right24() 410 Self([rotate_u128_right(self.0[0], 25)]) in rotate_each_word_right25() [all …]
|