HomeSort by relevance Sort by last modified time
    Searched defs:quarantine (Results 1 - 4 of 4) sorted by null

  /external/jemalloc/include/jemalloc/internal/
quarantine.h 7 /* 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)
private_namespace.h 325 #define quarantine JEMALLOC_N(quarantine) macro
private_unnamespace.h 325 #undef quarantine macro
  /external/jemalloc/src/
quarantine.c 5 * 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->curobjs = 0
100 quarantine(void *ptr) function
102 quarantine_t *quarantine; local
164 quarantine_t *quarantine = *(quarantine_t **)arg; local
    [all...]

Completed in 87 milliseconds