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

  /external/jemalloc/include/jemalloc/internal/
ctl.h 61 ctl_arena_stats_t *arenas; /* (narenas + 1) elements. */ member in struct:ctl_stats_s
jemalloc_internal.h 382 /* Protects arenas initialization (arenas, arenas_total). */
385 * Arenas that are used to service external requests. Not all elements of the
386 * arenas array are necessarily used; arenas are created lazily as needed.
388 * arenas[0..narenas_auto) are used for automatic multiplexing of threads and
389 * arenas. arenas[narenas_auto..narenas_total) are only used if the application
392 extern arena_t **arenas;
455 malloc_tsd_protos(JEMALLOC_ATTR(unused), arenas, arena_t * variable
    [all...]
private_namespace.h 65 #define arenas JEMALLOC_N(arenas) macro
private_unnamespace.h 65 #undef arenas macro
  /external/jemalloc/src/
jemalloc.c 7 malloc_tsd_data(, arenas, arena_t *, NULL)
40 arena_t **arenas; variable
117 /* Create a new arena and insert it into the arenas array at index ind. */
125 arenas[ind] = ret;
133 * by using arenas[0]. In practice, this is an extremely unlikely
140 return (arenas[0]);
155 assert(arenas[0] != NULL);
157 if (arenas[i] != NULL) {
162 if (arenas[i]->nthreads <
163 arenas[choose]->nthreads
    [all...]

Completed in 291 milliseconds