Lines Matching refs:qmap
120 fn qmap<T, F>(t: T, f: F) -> T in qmap() function
252 qmap(self, |x| {
258 qmap(self, |x| {
264 qmap(self, |x| {
270 qmap(self, |x| {
280 qmap(self, |x| x.rotate_left(32))
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()
536 qmap(self, |x| x.swap_bytes()) in bswap()
576 qmap(x, |x| x.to_le()) in unsafe_read_le()
582 qmap(x, |x| x.to_be()) in unsafe_read_be()
587 let x = qmap(self, |x| x.to_le()); in write_le()
593 let x = qmap(self, |x| x.to_be()); in write_be()