Searched defs:alloc (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/
H A DPointerSet.cpp25 u2 alloc; member in struct:PointerSet
65 pSet->alloc = initialSize;
125 if (pSet->count == pSet->alloc) {
129 if (pSet->alloc == 0)
130 pSet->alloc = 4;
132 pSet->alloc *= 2;
133 LOGVV("expanding %p to %d", pSet, pSet->alloc);
134 newList = (const void**)realloc(pSet->list, pSet->alloc * sizeof(void*));
136 ALOGE("Failed expanding ptr set (alloc=%d)", pSet->alloc);
[all...]
/dalvik/vm/alloc/
H A DCopying.cpp22 #include "alloc/Heap.h"
23 #include "alloc/HeapBitmap.h"
24 #include "alloc/HeapInternal.h"
25 #include "alloc/HeapSource.h"
26 #include "alloc/Verify.h"
785 static void room(size_t *alloc, size_t *avail, size_t *total) argument
789 *alloc = heapSource->allocBlocks*BLOCK_SIZE;
790 *avail = *total - *alloc;
2069 size_t alloc, unused, total;
2071 room(&alloc,
[all...]
/dalvik/vm/interp/
H A DInterp.cpp97 int alloc; member in struct:BreakpointSet
110 /* leave the rest zeroed -- will alloc on first use */
242 if (pSet->count == pSet->alloc) {
243 int newSize = pSet->alloc + kBreakpointGrowth;
254 pSet->alloc = newSize;

Completed in 3801 milliseconds