Searched refs:sfmt_t (Results 1 – 8 of 8) sorted by relevance
/external/jemalloc/test/include/test/ |
D | SFMT.h | 69 typedef struct sfmt_s sfmt_t; typedef 71 uint32_t gen_rand32(sfmt_t *ctx); 72 uint32_t gen_rand32_range(sfmt_t *ctx, uint32_t limit); 73 uint64_t gen_rand64(sfmt_t *ctx); 74 uint64_t gen_rand64_range(sfmt_t *ctx, uint64_t limit); 75 void fill_array32(sfmt_t *ctx, uint32_t *array, int size); 76 void fill_array64(sfmt_t *ctx, uint64_t *array, int size); 77 sfmt_t *init_gen_rand(uint32_t seed); 78 sfmt_t *init_by_array(uint32_t *init_key, int key_length); 79 void fini_gen_rand(sfmt_t *ctx); [all …]
|
D | SFMT-sse2.h | 84 JEMALLOC_INLINE void gen_rand_all(sfmt_t *ctx) { in gen_rand_all() 114 JEMALLOC_INLINE void gen_rand_array(sfmt_t *ctx, w128_t *array, int size) { in gen_rand_array()
|
D | SFMT-alti.h | 98 JEMALLOC_INLINE void gen_rand_all(sfmt_t *ctx) { in gen_rand_all() 125 JEMALLOC_INLINE void gen_rand_array(sfmt_t *ctx, w128_t *array, int size) { in gen_rand_array()
|
/external/jemalloc/test/src/ |
D | SFMT.c | 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() [all …]
|
/external/jemalloc/test/unit/ |
D | rtree.c | 97 sfmt_t *sfmt; in TEST_BEGIN()
|
D | SFMT.c | 1458 sfmt_t *ctx; in TEST_BEGIN() 1494 sfmt_t *ctx; in TEST_BEGIN() 1529 sfmt_t *ctx; in TEST_BEGIN() 1566 sfmt_t *ctx; in TEST_BEGIN()
|
D | ph.c | 170 sfmt_t *sfmt; in TEST_BEGIN()
|
D | rb.c | 233 sfmt_t *sfmt; in TEST_BEGIN()
|