Searched refs:low_water (Results 1 - 3 of 3) sorted by relevance

/external/kernel-headers/original/uapi/linux/
H A Datm_zatm.h27 int low_water,high_water; /* refill parameters */ member in struct:zatm_pool_info
/external/jemalloc/src/
H A Dtcache.c34 if (tbin->low_water > 0) {
40 tbin->low_water + (tbin->low_water >> 2), tcache);
43 tbin->low_water + (tbin->low_water >> 2), tcache);
51 } else if (tbin->low_water < 0) {
59 tbin->low_water = tbin->ncached;
158 if ((int)tbin->ncached < tbin->low_water)
159 tbin->low_water = tbin->ncached;
237 if ((int)tbin->ncached < tbin->low_water)
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Dtcache.h76 int low_water; /* Min # cached since last GC. */ member in struct:tcache_bin_s
261 tbin->low_water = -1;
265 if ((int)tbin->ncached < tbin->low_water)
266 tbin->low_water = tbin->ncached;

Completed in 89 milliseconds