OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mspace
(Results
1 - 3
of
3
) sorted by null
/art/runtime/gc/space/
dlmalloc_space.cc
40
void*
mspace
, uint8_t* begin, uint8_t* end, uint8_t* limit,
44
mspace_(
mspace
) {
45
CHECK(
mspace
!= nullptr);
53
void*
mspace
= CreateMspace(mem_map->Begin(), starting_size, initial_size);
local
54
if (
mspace
== nullptr) {
55
LOG(ERROR) << "Failed to initialize
mspace
for alloc space (" << name << ")";
69
mem_map, initial_size, name,
mspace
, begin, end, begin + capacity, growth_limit,
72
return new DlMallocSpace(mem_map, initial_size, name,
mspace
, begin, end, begin + capacity,
115
// create
mspace
using our backing storage starting at begin and with a footprint of
322
void* ArtDlMallocMoreCore(void*
mspace
, intptr_t increment) SHARED_REQUIRES(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
...]
Completed in 2660 milliseconds