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

  /external/jemalloc/src/
android_je_mallinfo.c 26 if (arenas[i] != NULL) {
27 malloc_mutex_lock(TSDN_NULL, &arenas[i]->lock);
28 mi.hblkhd += arenas[i]->stats.mapped;
29 mi.uordblks += arenas[i]->stats.allocated_large;
30 mi.uordblks += arenas[i]->stats.allocated_huge;
31 malloc_mutex_unlock(TSDN_NULL, &arenas[i]->lock);
34 arena_bin_t* bin = &arenas[i]->bins[j];
62 if (arenas[aidx] != NULL) {
63 malloc_mutex_lock(TSDN_NULL, &arenas[aidx]->lock);
64 mi.hblkhd = arenas[aidx]->stats.mapped
    [all...]
ctl.c 491 {NAME("arenas"), CHILD(indexed, stats_arenas)}
502 {NAME("arenas"), CHILD(named, arenas)},
661 ctl_arena_stats_t *astats = &ctl_stats.arenas[i];
662 ctl_arena_stats_t *sstats = &ctl_stats.arenas[ctl_stats.narenas];
686 memcpy(astats, ctl_stats.arenas, (ctl_stats.narenas + 1) *
703 a0dalloc(ctl_stats.arenas);
704 ctl_stats.arenas = astats;
720 ctl_arena_clear(&ctl_stats.arenas[ctl_stats.narenas]);
728 ctl_stats.arenas[i].initialized = initialized
    [all...]
jemalloc.c 54 /* Protects arenas initialization. */
57 * Arenas that are used to service external requests. Not all elements of the
58 * arenas array are necessarily used; arenas are created lazily as needed.
60 * arenas[0..narenas_auto) are used for automatic multiplexing of threads and
61 * arenas. arenas[narenas_auto..narenas_total) are only used if the application
64 arena_t **arenas; variable
66 static arena_t *a0; /* arenas[0]; read-only after initialization. */
412 atomic_write_p((void **)&arenas[ind], arena)
    [all...]
stats.c 45 CTL_GET("arenas.page", &page, size_t);
47 CTL_GET("arenas.nbins", &nbins, unsigned);
75 CTL_M2_M4_GET("stats.arenas.0.bins.0.nruns", i, j, &nruns,
85 CTL_M2_GET("arenas.bin.0.size", j, &reg_size, size_t);
86 CTL_M2_GET("arenas.bin.0.nregs", j, &nregs, uint32_t);
87 CTL_M2_GET("arenas.bin.0.run_size", j, &run_size, size_t);
89 CTL_M2_M4_GET("stats.arenas.0.bins.0.nmalloc", i, j, &nmalloc,
91 CTL_M2_M4_GET("stats.arenas.0.bins.0.ndalloc", i, j, &ndalloc,
93 CTL_M2_M4_GET("stats.arenas.0.bins.0.curregs", i, j, &curregs,
95 CTL_M2_M4_GET("stats.arenas.0.bins.0.nrequests", i, j
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 205 * The allocator sub-allocates <Big> blocks of memory (called arenas) aligned
208 * means that the memory arenas will be used entirely. A malloc(<Big>) is
214 * Arenas are allocated with mmap() on systems supporting anonymous memory
286 uint arenaindex; /* index into arenas of base adr */
294 /* Record keeping for arenas. */
488 `arenas` is a vector of arena_objects. It contains maxarenas entries, some of
490 currently associated with an allocated arena). Note that arenas proper are
493 Prior to Python 2.5, arenas were never free()'ed. Starting with Python 2.5,
494 we do try to free() arenas, and use some mild heuristic strategies to increase
495 the likelihood that arenas eventually can be freed.
521 static struct arena_object* arenas = NULL; variable in typeref:struct:arena_object
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 175 * The allocator sub-allocates <Big> blocks of memory (called arenas) aligned
178 * that the memory arenas will be used entirely. A malloc(<Big>) is usually
183 * Therefore, allocating arenas with malloc is not optimal, because there is
256 uint arenaindex; /* index into arenas of base adr */
264 /* Record keeping for arenas. */
455 `arenas` is a vector of arena_objects. It contains maxarenas entries, some of
457 currently associated with an allocated arena). Note that arenas proper are
460 Prior to Python 2.5, arenas were never free()'ed. Starting with Python 2.5,
461 we do try to free() arenas, and use some mild heuristic strategies to increase
462 the likelihood that arenas eventually can be freed.
488 static struct arena_object* arenas = NULL; variable in typeref:struct:arena_object
    [all...]
  /external/python/cpython2/Objects/
obmalloc.c 205 * The allocator sub-allocates <Big> blocks of memory (called arenas) aligned
208 * means that the memory arenas will be used entirely. A malloc(<Big>) is
214 * Arenas are allocated with mmap() on systems supporting anonymous memory
286 uint arenaindex; /* index into arenas of base adr */
294 /* Record keeping for arenas. */
488 `arenas` is a vector of arena_objects. It contains maxarenas entries, some of
490 currently associated with an allocated arena). Note that arenas proper are
493 Prior to Python 2.5, arenas were never free()'ed. Starting with Python 2.5,
494 we do try to free() arenas, and use some mild heuristic strategies to increase
495 the likelihood that arenas eventually can be freed
521 static struct arena_object* arenas = NULL; variable in typeref:struct:arena_object
    [all...]
  /external/jemalloc/include/jemalloc/internal/
ctl.h 66 ctl_arena_stats_t *arenas; /* (narenas + 1) elements. */ member in struct:ctl_stats_s
jemalloc_internal.h 456 /* Number of arenas used for automatic multiplexing of threads and arenas. */
460 * Arenas that are used to service external requests. Not all elements of the
461 * arenas array are necessarily used; arenas are created lazily as needed.
463 extern arena_t **arenas;
954 ret = arenas[ind];
956 ret = atomic_read_p((void *)&arenas[ind]);
    [all...]
private_namespace.h 119 #define arenas JEMALLOC_N(arenas) macro
    [all...]
private_unnamespace.h 119 #undef arenas macro
  /prebuilts/go/darwin-x86/src/runtime/
mheap.go 207 // There are three arenas where this data is held.
208 // free: Dirty arenas that are no longer accessed
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mheap.go 207 // There are three arenas where this data is held.
208 // free: Dirty arenas that are no longer accessed
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.3.Final/
netty-buffer-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/
netty-buffer-4.1.6.Final.jar 
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
Descriptor.cs     [all...]

Completed in 409 milliseconds