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

  /dalvik/vm/hprof/
HprofOutput.c 87 ctx->curRec.allocLen = 128;
88 ctx->curRec.body = malloc(ctx->curRec.allocLen);
151 //xxx if we used less than half (or whatever) of allocLen, shrink the buffer.
189 if (minSize > rec->allocLen) {
193 newAllocLen = rec->allocLen * 2;
195 newAllocLen = rec->allocLen + nmore + nmore/2;
200 rec->allocLen = newAllocLen;
207 assert(rec->length + nmore <= rec->allocLen);
Hprof.h 112 size_t allocLen;
  /dalvik/vm/alloc/
HeapBitmap.c 43 hb->bitsLen = hb->allocLen = bitsLen;
58 munmap((char *)hb->bits, hb->allocLen);
HeapBitmap.h 69 size_t allocLen;
HeapSource.c 713 dst->allocLen = dst->bitsLen;
    [all...]
  /frameworks/base/libs/utils/
Asset.cpp 557 long allocLen;
561 allocLen = mLength;
563 allocLen = 1;
565 buf = new unsigned char[allocLen];
567 LOGE("alloc of %ld bytes failed\n", (long) allocLen);
571 LOGV("Asset %p allocating buffer size %d (smaller than threshold)", this, (int)allocLen);

Completed in 46 milliseconds