| 230 | } |
| 231 | |
| 232 | static inline uint64_t philox_next64(philox_state *state) { |
| 233 | return philox_next(state); |
| 234 | } |
| 235 | |
| 236 | static inline uint32_t philox_next32(philox_state *state) { |
| 237 | uint64_t next; |
nothing calls this directly
no test coverage detected