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

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapDiffSnapshot.java 33 // The diff snapshots behaves like a snapshot that only contains the new allocations
47 Set<NativeAllocationInfo> allocations = local
49 allocations.removeAll(oldSnapshot.getAllocations());
50 return new ArrayList<NativeAllocationInfo>(allocations);
NativeHeapDataImporter.java 52 List<NativeAllocationInfo> allocations = new ArrayList<NativeAllocationInfo>(); local
62 // each block of allocations end with an empty line
74 allocations.add(getNativeAllocation(allocationBlock));
95 mSnapshot = new NativeHeapSnapshot(allocations);
102 * Allocations: 1
127 int allocations = sc.nextInt(); local
144 if (totalSize != size * allocations) {
146 genericErrorMessage("Total Size does not match size * # of allocations"));
149 NativeAllocationInfo info = new NativeAllocationInfo(size, allocations);
NativeLibraryAllocationInfo.java 81 List<NativeAllocationInfo> allocations) {
82 if (allocations == null) {
90 for (NativeAllocationInfo info : allocations) {
NativeHeapPanel.java 100 private static final String TOOLTIP_ZYGOTE_ALLOCATIONS = "Show Zygote Allocations";
101 private static final String TOOLTIP_DIFFS_ONLY = "Only show new allocations not present in previous snapshot";
102 private static final String TOOLTIP_GROUPBY = "Group allocations by library.";
178 List<NativeAllocationInfo> allocations = client.getClientData().getNativeAllocationList(); local
179 if (allocations.size() == 0) {
185 final List<NativeAllocationInfo> nativeAllocations = shallowCloneList(allocations);
311 private List<NativeAllocationInfo> shallowCloneList(List<NativeAllocationInfo> allocations) {
313 new ArrayList<NativeAllocationInfo>(allocations.size());
315 for (NativeAllocationInfo i : allocations) {
354 List<NativeAllocationInfo> allocations = c.getClientData().getNativeAllocationList() local
    [all...]
  /bionic/libc/bionic/
malloc_debug_common.h 60 size_t allocations; member in struct:HashEntry
malloc_debug_leak.c 137 entry->allocations++;
143 entry->allocations = 1;
304 // decrement the allocations
306 entry->allocations--;
307 if (entry->allocations <= 0) {
malloc_debug_common.c 74 size_t nbAlloc1 = e1->allocations;
75 size_t nbAlloc2 = e2->allocations;
83 // 2) number of allocations
110 * "*totalMemory" is set to the sum of all allocations we're tracking; does
144 ((entry->size & ~SIZE_FLAG_MASK) * entry->allocations);
267 * allocations is implemented in libc_malloc_debug_qemu.so and can be run inside
  /external/mesa3d/src/talloc/
hieralloc.c 33 static std::set<void *> allocations; member in class:std
166 assert(allocations.find(ptr + 1) == allocations.end());
167 allocations.insert(ptr + 1);
178 assert(allocations.find(ptr) != allocations.end());
216 allocations.erase(ptr);
217 assert(allocations.find(header + 1) == allocations.end());
218 allocations.insert(header + 1)
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
NativeAllocationInfo.java 28 * <p/>Contains number of allocations, their size and the stack trace.
38 public static final String ALLOCATIONS_KW = "Allocations:";
73 * @param size The size of the allocations.
74 * @param allocations the allocation count
76 public NativeAllocationInfo(int size, int allocations) {
79 this.mAllocations = allocations;
  /external/valgrind/main/none/tests/
cmdline1.stdout.exp 53 --alignment=<number> set minimum alignment of heap allocations [...]
cmdline2.stdout.exp 53 --alignment=<number> set minimum alignment of heap allocations [...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 417 * size_t allocations
421 * array of function pointers, and "allocations" is the number of
422 * allocations with the exact same size and backtrace.
424 * The entries are sorted by descending total size (i.e. size*allocations)
466 size_t allocations = *(size_t*) (ptr + sizeof(size_t)); local
472 allocations);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
AllocationPanel.java 103 * Content Provider to display the allocations of a client.
228 mRequestButton.setText("Get Allocations");
644 private AllocationInfo[] getFilteredAllocations(AllocationInfo[] allocations,
652 for (AllocationInfo info : allocations) {
  /external/oprofile/events/i386/nehalem/
unit_masks 348 0x02 alloc Count L2 HW prefetcher allocations
  /external/v8/test/mjsunit/
smi-ops.js 699 // allocations we got the Smi overflow case wrong.
unicode-test.js     [all...]

Completed in 669 milliseconds