| 1495 | } |
| 1496 | |
| 1497 | npy_bool random_buffered_bounded_bool(bitgen_t *bitgen_state, npy_bool off, |
| 1498 | npy_bool rng, npy_bool mask, |
| 1499 | bool use_masked, int *bcnt, |
| 1500 | uint32_t *buf) { |
| 1501 | return buffered_bounded_bool(bitgen_state, off, rng, mask, bcnt, buf); |
| 1502 | } |
| 1503 | |
| 1504 | /* |
| 1505 | * Fills an array with cnt random npy_uint64 between off and off + rng |
nothing calls this directly
no test coverage detected