| 63 | // ------------------------------------------------------------------------------------ |
| 64 | |
| 65 | inline uint32 rotate_left ( |
| 66 | uint32 x, |
| 67 | uint32 n |
| 68 | ) |
| 69 | { |
| 70 | return ( (x<<n) | (x>>(32-n)) ); |
| 71 | } |
| 72 | |
| 73 | // ------------------------------------------------------------------------------------ |
| 74 |
no outgoing calls
no test coverage detected