* Returns an unsigned 32 bit random integer. */
| 257 | * Returns an unsigned 32 bit random integer. |
| 258 | */ |
| 259 | static inline npy_uint32 rk_uint32(rk_state *state) { |
| 260 | return (npy_uint32)rk_random(state); |
| 261 | } |
| 262 | |
| 263 | /* |
| 264 | * Fills an array with cnt random npy_uint64 between off and off + rng |
no test coverage detected