HomeSort by relevance Sort by last modified time
    Searched defs:bytesAllocated (Results 1 - 8 of 8) sorted by null

  /dalvik/vm/compiler/
CompilerUtility.h 30 size_t bytesAllocated;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
GcEventContainer.java 41 private long bytesAllocated;
236 bytesAllocated = float12ToInt((int)(data & 0xFFFL));
318 return bytesAllocated;
326 return bytesAllocated - zBytesAllocated;
  /dalvik/vm/alloc/
Copying.cpp 233 size_t bytesAllocated;
344 heapSource->bytesAllocated);
543 value = heapSource->bytesAllocated;
601 heapSource->bytesAllocated += aligned;
612 heapSource->bytesAllocated += aligned;
625 heapSource->bytesAllocated += aligned;
    [all...]
HeapSource.cpp 73 size_t bytesAllocated;
261 * Functions to update heapSource->bytesAllocated when an object
270 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
272 heap->bytesAllocated += mspace_usable_size(ptr) +
278 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
285 if (delta < heap->bytesAllocated) {
286 heap->bytesAllocated -= delta;
288 heap->bytesAllocated = 0;
759 value = heap->bytesAllocated;
869 if (heap->bytesAllocated + n > hs->softLimit)
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleHeap.java 133 long bytesAllocated = (long)data.getInt() & 0x00ffffffff;
137 heapSize, bytesAllocated, objectsAllocated);
  /dalvik/vm/compiler/codegen/x86/
LowerHelper.cpp 165 size_t bytesAllocated;
182 currentAtomMem->bytesAllocated = 0;
191 if (size + currentAtomMem->bytesAllocated <= ATOMBLOCK_DEFAULT_SIZE) {
193 ptr = &currentAtomMem->ptr[currentAtomMem->bytesAllocated];
206 newAtomMem->bytesAllocated = 0;
219 tmpMem->bytesAllocated = 0;
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
HeapPanel.java 737 long bytesAllocated = heapInfo.get(ClientData.HEAP_BYTES_ALLOCATED);
744 item.setText(2, prettyByteCount(bytesAllocated));
745 item.setText(3, prettyByteCount(sizeInBytes - bytesAllocated));
746 item.setText(4, fractionalPercent(bytesAllocated, sizeInBytes));
    [all...]
  /prebuilts/misc/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 154 milliseconds