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

/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DRuntimeMemorySpy.java27 public void alloc(PlatformAddress address) { method in class:RuntimeMemorySpy
35 super.alloc(address);
H A DIMemorySpy.java28 public void alloc(PlatformAddress address); method in interface:IMemorySpy
H A DAbstractMemorySpy.java58 public void alloc(PlatformAddress address) { method in class:AbstractMemorySpy
77 // Attempt to free memory we didn't alloc
H A DPlatformAddressFactory.java114 PlatformAddress.memorySpy.alloc(newMemory);
124 public static PlatformAddress alloc(int size) { method in class:PlatformAddressFactory
137 PlatformAddress.memorySpy.alloc(newMemory);
149 public static PlatformAddress alloc(int size, byte init) { method in class:PlatformAddressFactory
156 PlatformAddress.memorySpy.alloc(newMemory);
/dalvik/vm/
H A DPointerSet.c25 u2 alloc; member in struct:PointerSet
64 pSet->alloc = initialSize;
124 if (pSet->count == pSet->alloc) {
128 if (pSet->alloc == 0)
129 pSet->alloc = 4;
131 pSet->alloc *= 2;
132 LOGVV("expanding %p to %d\n", pSet, pSet->alloc);
133 newList = realloc(pSet->list, pSet->alloc * sizeof(const void*));
135 LOGE("Failed expanding ptr set (alloc=%d)\n", pSet->alloc);
[all...]
H A DSync.c60 u2 alloc; member in struct:ExpandingObjectList
1581 pList->alloc = pList->count = 0;
1609 if (pList->count == pList->alloc) {
1613 if (pList->alloc == 0)
1614 pList->alloc = 4;
1616 pList->alloc *= 2;
1617 LOGVV("expanding %p to %d\n", pList, pList->alloc);
1618 newList = realloc(pList->list, pList->alloc * sizeof(Object*));
1620 LOGE("Failed expanding DP object list (alloc=%d)\n", pList->alloc);
[all...]
/dalvik/vm/interp/
H A DInterp.c88 int alloc; member in struct:BreakpointSet
101 /* leave the rest zeroed -- will alloc on first use */
233 if (pSet->count == pSet->alloc) {
234 int newSize = pSet->alloc + kBreakpointGrowth;
245 pSet->alloc = newSize;

Completed in 119 milliseconds