Home
last modified time | relevance | path

Searched refs:allocLen (Results 1 – 5 of 5) sorted by relevance

/dalvik/vm/hprof/
DHprofOutput.c87 ctx->curRec.allocLen = 128; in hprofContextInit()
88 ctx->curRec.body = malloc(ctx->curRec.allocLen); in hprofContextInit()
189 if (minSize > rec->allocLen) { in guaranteeRecordAppend()
193 newAllocLen = rec->allocLen * 2; in guaranteeRecordAppend()
195 newAllocLen = rec->allocLen + nmore + nmore/2; in guaranteeRecordAppend()
200 rec->allocLen = newAllocLen; in guaranteeRecordAppend()
207 assert(rec->length + nmore <= rec->allocLen); in guaranteeRecordAppend()
DHprof.h112 size_t allocLen; member
/dalvik/vm/alloc/
DHeapBitmap.c43 hb->bitsLen = hb->allocLen = bitsLen; in dvmHeapBitmapInit()
58 munmap((char *)hb->bits, hb->allocLen); in dvmHeapBitmapDelete()
DHeapBitmap.h69 size_t allocLen; member
DHeapSource.c713 dst->allocLen = dst->bitsLen; in aliasBitmap()