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

  /art/runtime/gc/space/
dlmalloc_space.cc 41 void* mspace, uint8_t* begin, uint8_t* end, uint8_t* limit,
45 mspace_(mspace) {
46 CHECK(mspace != nullptr);
54 void* mspace = CreateMspace(mem_map->Begin(), starting_size, initial_size); local
55 if (mspace == nullptr) {
56 LOG(ERROR) << "Failed to initialize mspace for alloc space (" << name << ")";
70 mem_map, initial_size, name, mspace, begin, end, begin + capacity, growth_limit,
73 return new DlMallocSpace(mem_map, initial_size, name, mspace, begin, end, begin + capacity,
116 // create mspace using our backing storage starting at begin and with a footprint of
323 void* ArtDlMallocMoreCore(void* mspace, intptr_t increment) REQUIRES_SHARED(Locks::mutator_lock_)
    [all...]
  /external/dlmalloc/
malloc.h 20 * If MSPACES is defined, declarations for mspace versions are included.
526 mspace is an opaque type representing an independent
529 typedef void* mspace; typedef
542 mspace create_mspace(size_t capacity, int locked);
550 size_t destroy_mspace(mspace msp);
554 of a new mspace. Part (less than 128*sizeof(size_t) bytes) of this
561 mspace create_mspace_with_base(void* base, size_t capacity, int locked);
566 others in this mspace. By default large chunks are not tracked,
574 int mspace_track_large_chunks(mspace msp, int enable);
581 struct mallinfo mspace_mallinfo(mspace msp)
    [all...]
malloc.c 190 are versions of malloc routines that take an "mspace" argument
196 static mspace mymspace = create_mspace(0,0); // for example
199 (Note: If you only need one instance of an mspace, you can instead
204 static __thread mspace tlms = 0;
211 Unless FOOTERS is defined, each mspace is completely independent.
215 indicating its originating mspace, and frees are directed to their
260 If true, only compile in mspace versions, not regular versions.
265 overridden on a per-mspace basis for mspace versions.) If set to a
1272 typedef void* mspace; typedef
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/
dlmalloc.c 174 are versions of malloc routines that take an "mspace" argument
180 static mspace mymspace = create_mspace(0,0); // for example
183 (Note: If you only need one instance of an mspace, you can instead
188 static __thread mspace tlms = 0;
195 Unless FOOTERS is defined, each mspace is completely independent.
199 indicating its originating mspace, and frees are directed to their
224 If true, only compile in mspace versions, not regular versions.
229 overridden on a per-mspace basis for mspace versions.)
1016 typedef void* mspace; typedef
    [all...]

Completed in 147 milliseconds