Searched defs:quarantine (Results 1 - 4 of 4) sorted by relevance

/external/jemalloc/include/jemalloc/internal/
H A Dquarantine.h7 /* Default per thread quarantine size if valgrind is enabled. */
33 void quarantine(void *ptr);
42 malloc_tsd_protos(JEMALLOC_ATTR(unused), quarantine, quarantine_t *) variable
48 malloc_tsd_externs(quarantine, quarantine_t *)
49 malloc_tsd_funcs(JEMALLOC_ALWAYS_INLINE, quarantine, quarantine_t *, NULL,
55 quarantine_t *quarantine; local
59 quarantine = *quarantine_tsd_get();
60 if (quarantine == NULL)
H A Dprivate_namespace.h325 #define quarantine JEMALLOC_N(quarantine) macro
H A Dprivate_unnamespace.h325 #undef quarantine macro
/external/jemalloc/src/
H A Dquarantine.c5 * quarantine pointers close to NULL are used to encode state information that
15 malloc_tsd_data(, quarantine, quarantine_t *, NULL)
20 static quarantine_t *quarantine_grow(quarantine_t *quarantine);
21 static void quarantine_drain_one(quarantine_t *quarantine);
22 static void quarantine_drain(quarantine_t *quarantine, size_t upper_bound);
29 quarantine_t *quarantine; local
31 quarantine = (quarantine_t *)imalloc(offsetof(quarantine_t, objs) +
33 if (quarantine == NULL)
35 quarantine->curbytes = 0;
36 quarantine
46 quarantine_grow(quarantine_t *quarantine) argument
80 quarantine_drain_one(quarantine_t *quarantine) argument
92 quarantine_drain(quarantine_t *quarantine, size_t upper_bound) argument
100 quarantine(void *ptr) function
102 quarantine_t *quarantine; local
164 quarantine_t *quarantine = *(quarantine_t **)arg; local
[all...]

Completed in 85 milliseconds