Home
last modified time | relevance | path

Searched refs:elem_tot (Results 1 – 3 of 3) sorted by relevance

/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/intern/
H A Drand.cc144 void BLI_rng_shuffle_array(RNG *rng, void *data, unsigned int elem_size_i, unsigned int elem_tot) in BLI_rng_shuffle_array() argument
147 unsigned int i = elem_tot; in BLI_rng_shuffle_array()
150 if (elem_tot <= 1) { in BLI_rng_shuffle_array()
157 unsigned int j = BLI_rng_get_uint(rng) % elem_tot; in BLI_rng_shuffle_array()
204 unsigned int elem_tot, in BLI_array_randomize() argument
210 BLI_rng_shuffle_array(&rng, data, elem_size, elem_tot); in BLI_array_randomize()
/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/
H A DBLI_rand.h66 unsigned int elem_tot) ATTR_NONNULL(1, 2);
83 unsigned int elem_tot,
/dports/security/afl++/AFLplusplus-3.14c/utils/libdislocator/
H A Dlibdislocator.so.c471 const size_t elem_tot = elem_len * elem_cnt; in reallocarray() local
477 DEBUGF("reallocarray size overflow (%zu)", elem_tot); in reallocarray()
481 ret = realloc(ptr, elem_tot); in reallocarray()