Home
last modified time | relevance | path

Searched refs:randfree (Results 1 – 6 of 6) sorted by relevance

/dports/databases/redis5/redis-5.0.14/src/
H A Dredis-benchmark.c89 size_t randfree; /* Number of unused pointers in client->randptr */ member
381 c->randfree = 0; in createClient()
393 c->randfree = RANDPTR_INITIAL_SIZE; in createClient()
394 c->randptr = zmalloc(sizeof(char*)*c->randfree); in createClient()
396 if (c->randfree == 0) { in createClient()
398 c->randfree += c->randlen; in createClient()
401 c->randfree--; in createClient()
/dports/databases/redis6/redis-6.0.16/src/
H A Dredis-benchmark.c125 size_t randfree; /* Number of unused pointers in client->randptr */ member
715 c->randfree = 0; in createClient()
727 c->randfree = RANDPTR_INITIAL_SIZE; in createClient()
728 c->randptr = zmalloc(sizeof(char*)*c->randfree); in createClient()
730 if (c->randfree == 0) { in createClient()
732 c->randfree += c->randlen; in createClient()
735 c->randfree--; in createClient()
/dports/databases/redis-devel/redis-0e5b813/src/
H A Dredis-benchmark.c135 size_t randfree; /* Number of unused pointers in client->randptr */ member
773 c->randfree = 0; in createClient()
785 c->randfree = RANDPTR_INITIAL_SIZE; in createClient()
786 c->randptr = zmalloc(sizeof(char*)*c->randfree); in createClient()
788 if (c->randfree == 0) { in createClient()
790 c->randfree += c->randlen; in createClient()
793 c->randfree--; in createClient()
/dports/math/calc/calc-2.14.0.14/
H A Dzrand.h216 E_FUNC void randfree(RAND *rand);
H A Dzrand.c2305 randfree(RAND *state) in randfree() function
H A Dvalue.c96 randfree(vp->v_rand); in freevalue()