| 241 | static unsigned int xseed = 0x11223344; |
| 242 | |
| 243 | static inline unsigned int xrand(void) |
| 244 | { |
| 245 | return (((xseed = xseed * 214013L + 2531011L) >> 16) & 0x7fffffff); |
| 246 | } |
| 247 | |
| 248 | // generate keys |
| 249 | static inline void init_random_keys(int *keys, int count, int seed) |