| 111 | |
| 112 | |
| 113 | static inline uint64_t pcg_rotr_64(uint64_t value, unsigned int rot) { |
| 114 | #ifdef _WIN32 |
| 115 | return _rotr64(value, rot); |
| 116 | #else |
| 117 | return (value >> rot) | (value << ((-rot) & 63)); |
| 118 | #endif |
| 119 | } |
| 120 | |
| 121 | #ifdef PCG_EMULATED_128BIT_MATH |
| 122 |
no outgoing calls
no test coverage detected