Home
last modified time | relevance | path

Searched refs:usable (Results 1 – 4 of 4) sorted by relevance

/redis-3.2.3/src/
H A Dsentinel.c2863 int usable = 1; /* Number of usable Sentinels. Init to 1 to count myself. */ in sentinelIsQuorumReachable() local
2872 usable++; in sentinelIsQuorumReachable()
2876 if (usable < (int)master->quorum) result |= SENTINEL_ISQR_NOQUORUM; in sentinelIsQuorumReachable()
2877 if (usable < voters/2+1) result |= SENTINEL_ISQR_NOAUTH; in sentinelIsQuorumReachable()
2878 if (usableptr) *usableptr = usable; in sentinelIsQuorumReachable()
3073 int usable; in sentinelCommand() local
3078 int result = sentinelIsQuorumReachable(ri,&usable); in sentinelCommand()
3082 "can be reached\r\n",usable)); in sentinelCommand()
3085 "-NOQUORUM %i usable Sentinels. ",usable); in sentinelCommand()
/redis-3.2.3/deps/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal.h.in662 * Compute usable size that would result from allocating an object with the
676 * Compute usable size that would result from allocating an object with the
/redis-3.2.3/deps/jemalloc/
H A DChangeLog282 - Add a configure test for SSE2 rather than assuming it is usable on i686
325 - Don't junk-fill reallocations unless usable size changes. This fixes a
715 - Enhance the heap profiler to trigger samples based on usable size, rather
/redis-3.2.3/tests/unit/
H A Dscripting.tcl497 test {Timedout script link is still usable after Lua returns} {