1 2 3 4 5 6 7
#pragma once namespace NArgonish { static inline ui64 Rotr(const ui64 w, const unsigned c) { return (w >> c) | (w << (64 - c)); } }