| 20 | } |
| 21 | |
| 22 | static inline unsigned int Xorshift32() |
| 23 | { |
| 24 | unsigned int x = Seed; |
| 25 | x ^= x << 13; |
| 26 | x ^= x >> 17; |
| 27 | x ^= x << 5; |
| 28 | Seed = x; |
| 29 | return x; |
| 30 | } |
| 31 | |
| 32 | int GenerateInt(int low, int high) |
| 33 | { |
no outgoing calls
no test coverage detected