MCPcopy Create free account
hub / github.com/numpy/numpy / next_uint32

Function next_uint32

numpy/random/src/distributions/distributions.c:12–14  ·  view source on GitHub ↗

Inline generators for internal use */

Source from the content-addressed store, hash-verified

10
11/* Inline generators for internal use */
12static inline uint32_t next_uint32(bitgen_t *bitgen_state) {
13 return bitgen_state->next_uint32(bitgen_state->state);
14}
15static inline uint64_t next_uint64(bitgen_t *bitgen_state) {
16 return bitgen_state->next_uint64(bitgen_state->state);
17}

Callers 15

next_floatFunction · 0.85
random_standard_normal_fFunction · 0.85
random_positive_int32Function · 0.85
random_positive_intFunction · 0.85
random_uintFunction · 0.85
random_intervalFunction · 0.85
buffered_uint16Function · 0.85
buffered_uint8Function · 0.85
buffered_bounded_boolFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected