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

Function next_uint64

numpy/random/src/distributions/distributions.c:15–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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}
18
19static inline float next_float(bitgen_t *bitgen_state) {
20 return (next_uint32(bitgen_state) >> 8) * (1.0f / 16777216.0f);

Callers 10

random_standard_normalFunction · 0.85
random_positive_int64Function · 0.85
random_positive_intFunction · 0.85
random_uintFunction · 0.85
random_intervalFunction · 0.85
bounded_masked_uint64Function · 0.85
bounded_lemire_uint64Function · 0.85
random_bounded_uint64Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected