Lines Matching refs:sfmt_t
125 JEMALLOC_INLINE_C void gen_rand_all(sfmt_t *ctx);
126 JEMALLOC_INLINE_C void gen_rand_array(sfmt_t *ctx, w128_t *array, int size);
129 static void period_certification(sfmt_t *ctx);
285 JEMALLOC_INLINE_C void gen_rand_all(sfmt_t *ctx) { in gen_rand_all()
312 JEMALLOC_INLINE_C void gen_rand_array(sfmt_t *ctx, w128_t *array, int size) { in gen_rand_array()
383 static void period_certification(sfmt_t *ctx) { in period_certification()
447 uint32_t gen_rand32(sfmt_t *ctx) { in gen_rand32()
461 uint32_t gen_rand32_range(sfmt_t *ctx, uint32_t limit) { in gen_rand32_range()
482 uint64_t gen_rand64(sfmt_t *ctx) { in gen_rand64()
511 uint64_t gen_rand64_range(sfmt_t *ctx, uint64_t limit) { in gen_rand64_range()
551 void fill_array32(sfmt_t *ctx, uint32_t *array, int size) { in fill_array32()
587 void fill_array64(sfmt_t *ctx, uint64_t *array, int size) { in fill_array64()
607 sfmt_t *init_gen_rand(uint32_t seed) { in init_gen_rand()
609 sfmt_t *ctx; in init_gen_rand()
613 if (posix_memalign(&p, sizeof(w128_t), sizeof(sfmt_t)) != 0) { in init_gen_rand()
616 ctx = (sfmt_t *)p; in init_gen_rand()
638 sfmt_t *init_by_array(uint32_t *init_key, int key_length) { in init_by_array()
640 sfmt_t *ctx; in init_by_array()
648 if (posix_memalign(&p, sizeof(w128_t), sizeof(sfmt_t)) != 0) { in init_by_array()
651 ctx = (sfmt_t *)p; in init_by_array()
714 void fini_gen_rand(sfmt_t *ctx) { in fini_gen_rand()