Searched refs:totalSize (Results 1 - 9 of 9) sorted by relevance

/dalvik/vm/
H A DDvmDex.cpp54 u4 totalSize = sizeof(DvmDex) + local
57 u1 *blob = (u1 *)dvmAllocRegion(totalSize,
182 u4 totalSize; local
187 totalSize = pDvmDex->pHeader->stringIdsSize * sizeof(struct StringObject*);
188 totalSize += pDvmDex->pHeader->typeIdsSize * sizeof(struct ClassObject*);
189 totalSize += pDvmDex->pHeader->methodIdsSize * sizeof(struct Method*);
190 totalSize += pDvmDex->pHeader->fieldIdsSize * sizeof(struct Field*);
191 totalSize += sizeof(DvmDex);
198 munmap(pDvmDex, totalSize);
H A DAllocTracker.cpp551 size_t baseSize, totalSize; local
554 totalSize = baseSize;
555 totalSize += computeStringTableSize(classNames);
556 totalSize += computeStringTableSize(methodNames);
557 totalSize += computeStringTableSize(fileNames);
558 ALOGI("Generated AT, size is %zd/%zd", baseSize, totalSize);
565 buffer = (u1*) malloc(totalSize);
571 if (strPtr - buffer != (int)totalSize) {
572 ALOGE("size mismatch (%d vs %zd)", strPtr - buffer, totalSize);
575 //dvmPrintHexDump(buffer, totalSize);
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DStatistics.java119 private int totalSize; field in class:Statistics.Data
138 this.totalSize = size;
152 totalSize += size;
182 totalSize + " bytes total\n");
187 int average = totalSize / count;
/dalvik/dx/src/com/android/dx/dex/file/
H A DStatistics.java119 private int totalSize; field in class:Statistics.Data
138 this.totalSize = size;
152 totalSize += size;
182 totalSize + " bytes total\n");
187 int average = totalSize / count;
/dalvik/vm/oo/
H A DArray.cpp51 size_t totalSize = elementSize + headerSize; local
52 if (elementSize >> elementShift != length || totalSize < elementSize) {
58 ArrayObject* newArray = (ArrayObject*)dvmMalloc(totalSize, allocFlags);
62 dvmTrackAllocation(arrayClass, totalSize);
/dalvik/vm/compiler/
H A DCompilerIR.h212 int totalSize; // header + code size member in struct:CompilationUnit
H A DFrontend.cpp1596 methodStats->nativeSize += cUnit->totalSize;
2116 methodStats->nativeSize += cUnit.totalSize;
/dalvik/vm/compiler/codegen/arm/
H A DArchUtility.cpp403 ALOGD("total size is %d bytes", cUnit->totalSize);
H A DAssemble.cpp1429 cUnit->totalSize = offset;
1431 if (gDvmJit.codeCacheByteUsed + cUnit->totalSize > gDvmJit.codeCacheSize) {

Completed in 163 milliseconds