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

/frameworks/base/core/jni/
H A Dandroid_ddm_DdmHandleNativeHeap.cpp43 size_t allocSize; member in struct:Header
95 get_malloc_leak_info(&allocBytes, &header.allocSize, &header.allocInfoSize,
100 jbyteArray array = env->NewByteArray(sizeof(Header) + header.mapSize + header.allocSize);
108 // ALOGD("*** mapSize: %d allocSize: %d allocInfoSize: %d totalMemory: %d",
109 // header.mapSize, header.allocSize, header.allocInfoSize, header.totalMemory);
119 memcpy(ptr, allocBytes, header.allocSize);
/frameworks/base/tools/preload/
H A DMemoryUsage.java47 final int allocSize; field in class:MemoryUsage
62 allocSize = Integer.parseInt(parsed[8]);
77 allocSize = -1;
90 int allocSize,
101 this.allocSize = allocSize;
116 allocSize - baseline.allocSize,
123 return allocSize - freedSize;
83 MemoryUsage(int nativeSharedPages, int javaSharedPages, int otherSharedPages, int nativePrivatePages, int javaPrivatePages, int otherPrivatePages, int allocCount, int allocSize, int freedCount, int freedSize, long nativeHeapSize) argument
/frameworks/rs/
H A DrsScriptC_LibGL.cpp223 size_t allocSize = a->getType()->getSizeBytes(); local
224 rsc->mStateFont.renderText(text, allocSize, x, y);
/frameworks/rs/driver/
H A DrsdAllocation.cpp273 size_t allocSize = drv->faceOffset; local
275 allocSize *= 6;
278 return allocSize;
289 size_t allocSize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), NULL); local
295 ptr = (uint8_t *)malloc(allocSize);
303 if(allocSize != verifySize) {
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdAllocation.cpp108 size_t allocSize = drv->faceOffset; local
110 allocSize *= 6;
113 return allocSize;
124 size_t allocSize = AllocationBuildPointerTable(rsc, alloc, alloc->getType(), NULL); local
132 ptr = (uint8_t *)malloc(allocSize);
140 if(allocSize != verifySize) {
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp152 allocSize = 1 + size / 8192; // 1 bit per kilobyte
153 bitmap = (char*) calloc(1, allocSize);
170 int numlines = allocSize / 12;
185 size_t allocSize; member in struct:android::ReadTracker
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp1557 size_t allocSize = (size*3)/2; local
1558 void* buf = realloc(mData, allocSize);
1564 mBufferSize = allocSize;

Completed in 152 milliseconds