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

  /bionic/libc/bionic/
dlmalloc.h 22 * If MSPACES is defined, declarations for mspace versions are included.
485 mspace is an opaque type representing an independent
488 typedef void* mspace; typedef
501 mspace create_mspace(size_t capacity, int locked);
509 size_t destroy_mspace(mspace msp);
513 of a new mspace. Part (less than 128*sizeof(size_t) bytes) of this
520 mspace create_mspace_with_base(void* base, size_t capacity, int locked);
526 void* mspace_malloc(mspace msp, size_t bytes);
536 void mspace_free(mspace msp, void* mem);
547 void* mspace_realloc(mspace msp, void* mem, size_t newsize)
    [all...]
dlmalloc.c 201 are versions of malloc routines that take an "mspace" argument
207 static mspace mymspace = create_mspace(0,0); // for example
210 (Note: If you only need one instance of an mspace, you can instead
215 static __thread mspace tlms = 0;
222 Unless FOOTERS is defined, each mspace is completely independent.
226 indicating its originating mspace, and frees are directed to their
251 If true, only compile in mspace versions, not regular versions.
256 overridden on a per-mspace basis for mspace versions.)
1112 typedef void* mspace; typedef
    [all...]
  /external/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.)
1000 typedef void* mspace; typedef
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_malloc.c 210 are versions of malloc routines that take an "mspace" argument
216 static mspace mymspace = create_mspace(0,0); // for example
219 (Note: If you only need one instance of an mspace, you can instead
224 static __thread mspace tlms = 0;
231 Unless FOOTERS is defined, each mspace is completely independent.
235 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.)
1044 typedef void* mspace; typedef
    [all...]

Completed in 1009 milliseconds