Lines Matching refs:rotate_right
296 dmap(self, |x| x.rotate_right(7)) in rotate_each_word_right7()
300 dmap(self, |x| x.rotate_right(8)) in rotate_each_word_right8()
304 dmap(self, |x| x.rotate_right(11)) in rotate_each_word_right11()
308 dmap(self, |x| x.rotate_right(12)) in rotate_each_word_right12()
312 dmap(self, |x| x.rotate_right(16)) in rotate_each_word_right16()
316 dmap(self, |x| x.rotate_right(20)) in rotate_each_word_right20()
320 dmap(self, |x| x.rotate_right(24)) in rotate_each_word_right24()
324 dmap(self, |x| x.rotate_right(25)) in rotate_each_word_right25()
331 qmap(self, |x| x.rotate_right(7)) in rotate_each_word_right7()
335 qmap(self, |x| x.rotate_right(8)) in rotate_each_word_right8()
339 qmap(self, |x| x.rotate_right(11)) in rotate_each_word_right11()
343 qmap(self, |x| x.rotate_right(12)) in rotate_each_word_right12()
347 qmap(self, |x| x.rotate_right(16)) in rotate_each_word_right16()
351 qmap(self, |x| x.rotate_right(20)) in rotate_each_word_right20()
355 qmap(self, |x| x.rotate_right(24)) in rotate_each_word_right24()
359 qmap(self, |x| x.rotate_right(25)) in rotate_each_word_right25()
365 qmap(self, |x| x.rotate_right(32)) in rotate_each_word_right32()
376 assert_eq!(rotate_u128_right(X, 17), X.rotate_right(17)); in test_rotate_u128()