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

  /dalvik/vm/compiler/
Utility.cpp 35 currentArena->bytesAllocated = 0;
48 if (size + currentArena->bytesAllocated <= currentArena->blockSize) {
50 ptr = &currentArena->ptr[currentArena->bytesAllocated];
51 currentArena->bytesAllocated += size;
76 newArena->bytesAllocated = 0;
95 block->bytesAllocated = 0;
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/
HeapSource.cpp 80 size_t bytesAllocated;
250 * Functions to update heapSource->bytesAllocated when an object
259 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
261 heap->bytesAllocated += mspace_usable_size(heap->msp, ptr) +
267 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
274 if (delta < heap->bytesAllocated) {
275 heap->bytesAllocated -= delta;
277 heap->bytesAllocated = 0;
686 value = heap->bytesAllocated;
796 if (heap->bytesAllocated + n > hs->softLimit)
    [all...]
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...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ClientData.java 113 public final static String HEAP_BYTES_ALLOCATED = "bytesAllocated"; //$NON-NLS-1$
473 * @param bytesAllocated The number of bytes currently allocated in the heap
479 long sizeInBytes, long bytesAllocated, long objectsAllocated) {
483 heapInfo.put(HEAP_BYTES_ALLOCATED, bytesAllocated);
HandleHeap.java 133 long bytesAllocated = (long)data.getInt() & 0x00ffffffff;
137 heapSize, bytesAllocated, objectsAllocated);
  /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...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 652 milliseconds