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

/external/jemalloc/src/
H A Dchunk_dss.c27 static void *dss_max; variable
97 dss_max = chunk_dss_sbrk(0);
102 gap_size = (chunksize - CHUNK_ADDR2OFFSET(dss_max)) &
109 cpad = (void *)((uintptr_t)dss_max + gap_size);
110 ret = (void *)ALIGNMENT_CEILING((uintptr_t)dss_max,
114 if ((uintptr_t)ret < (uintptr_t)dss_max ||
115 (uintptr_t)dss_next < (uintptr_t)dss_max) {
122 if (dss_prev == dss_max) {
124 dss_max = dss_next;
151 && (uintptr_t)chunk < (uintptr_t)dss_max)
[all...]

Completed in 41 milliseconds