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

  /external/webkit/Source/WebCore/platform/
Arena.h 46 // FIXME: We'd always like to use AllocAlignmentInteger for Arena alignment
58 struct Arena {
59 Arena* next; // next arena
61 uword limit; // end of arena (1+last byte)
62 uword avail; // points to next available byte in arena
66 Arena first; // first arena in pool list.
67 Arena* current; // current arena
    [all...]
Arena.cpp 47 #include "Arena.h"
65 static Arena *arena_freelist;
107 ** ArenaAllocate() -- allocate space from an arena pool
109 ** Description: ArenaAllocate() allocates space from an arena
115 ** If there is not enough space in the arena pool->current, try
116 ** to claim an arena, on a first fit basis, from the global
119 ** If no arena in arena_freelist is suitable, then try to
120 ** allocate a new arena from the heap.
127 Arena *a;
149 Arena *p = NULL; /* previous pointer, for unlinking from freelist *
    [all...]
  /external/valgrind/main/coregrind/
m_mallocfree.c 68 // Each arena has a sorted array of superblocks, which expands
78 red zone bytes (depends on Arena.rz_szB, but >= sizeof(void*))
80 red zone bytes (depends on Arena.rz_szB, but >= sizeof(void*))
88 excess red zone bytes (if Arena.rz_szB > sizeof(void*))
90 excess red zone bytes (if Arena.rz_szB > sizeof(void*))
172 // of the same arena can be reclaimed or till a new superblock is needed
173 // in any arena.
189 // An arena. 'freelist' is a circular, doubly-linked list. 'rz_szB' is
209 // superblocks in the arena. If this array is expanded, which
236 Arena;
793 Arena* arena = arenaId_to_ArenaP(aid); local
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 538 platform/Arena.cpp \
    [all...]

Completed in 280 milliseconds