| 396 | } |
| 397 | |
| 398 | static inline uint64_t pcg64_cm_next64(pcg64_state *state) { |
| 399 | return pcg_cm_random_r(state->pcg_state); |
| 400 | } |
| 401 | |
| 402 | static inline uint32_t pcg64_cm_next32(pcg64_state *state) { |
| 403 | uint64_t next; |
nothing calls this directly
no test coverage detected