HomeSort by relevance Sort by last modified time
    Searched defs:allocations (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AllAllocationsRecorder.java 36 private final ConcurrentHashMultiset<Allocation> allocations = ConcurrentHashMultiset.create(); field in class:AllAllocationsRecorder
66 allocations.add(
81 allocations.clear();
88 return new AllocationStats(allocations, reps);
AllocationStats.java 34 * A set of statistics about the allocations performed by a benchmark method.
40 private final ImmutableMultiset<Allocation> allocations; field in class:AllocationStats
43 * Constructs a new {@link AllocationStats} with the given number of allocations
44 * ({@code allocationCount}), cumulative size of the allocations ({@code allocationSize}) and the
52 * Constructs a new {@link AllocationStats} with the given allocations and the number of
55 AllocationStats(Collection<Allocation> allocations, int reps) {
56 this(allocations.size(), Allocation.getTotalSize(allocations), reps,
57 ImmutableMultiset.copyOf(allocations));
61 Multiset<Allocation> allocations) {
    [all...]
  /frameworks/av/media/libmedia/
MemoryLeakTrackUtil.cpp 72 oss << totalMemory << " bytes in " << count << " allocations\n";
82 size_t allocations; member in struct:android::AllocEntry
88 oss << (e->size * e->allocations)
89 << " bytes ( " << e->size << " bytes * " << e->allocations << " allocations )\n";
  /art/test/004-NativeAllocations/src/
Main.java 67 NativeAllocation[] allocations = new NativeAllocation[count]; local
69 allocations[i % count] = new NativeAllocation(size, false);
76 allocations[i % count] = new NativeAllocation(size, true);
78 // Do more allocations now that the finalizer thread is deadlocked so that we force
81 allocations[i % count] = new NativeAllocation(size, true);
  /system/bt/osi/src/
allocation_tracker.c 62 static hash_map_t *allocations; variable
66 if (allocations)
74 allocations = hash_map_new_internal(
86 if (!allocations)
90 hash_map_free(allocations);
91 allocations = NULL;
96 if (!allocations)
100 hash_map_clear(allocations);
105 if (!allocations)
111 hash_map_foreach(allocations, allocation_entry_freed_checker, &unfreed_memory_size)
    [all...]
  /external/selinux/libselinux/utils/
avcstat.c 27 #define HEADERS "lookups hits misses allocations reclaims frees"
33 unsigned long long allocations; member in struct:avc_cache_stats
188 &tmp.allocations,
197 tot.allocations += tmp.allocations;
209 tot.allocations, tot.reclaims, tot.frees);
214 rel.allocations = tot.allocations - last.allocations;
219 rel.allocations, rel.reclaims, rel.frees)
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkAllocationCallbackUtil.cpp 364 std::vector<AllocationSlot> allocations; local
404 ptrToSlotIndex[record.data.allocation.returnedPtr] = allocations.size();
405 allocations.push_back(AllocationSlot(record, true));
410 if (!allocations[slotNdx].isLive)
412 allocations[slotNdx].isLive = true;
413 allocations[slotNdx].record = record;
417 // we should not have multiple live allocations with the same pointer
431 AllocationSlot& origSlot = allocations[origSlotNdx];
449 allocations[origSlotNdx].record = record;
455 allocations[origSlotNdx].isLive = false
    [all...]
  /external/v8/src/profiler/
sampling-heap-profiler.cc 38 // recorded all allocations, we must approximate the shape of the underlying
39 // space of allocations based on the samples we have collected. Given that
42 // approximate the true number of allocations with size *size* given that
220 std::vector<v8::AllocationProfile::Allocation> allocations; local
221 allocations.reserve(node->allocations_.size());
239 allocations.push_back(ScaleSample(alloc.first, alloc.second));
246 std::vector<v8::AllocationProfile::Node*>(), allocations}));
  /external/webrtc/webrtc/p2p/base/
turnserver.h 175 const AllocationMap& allocations() const { return allocations_; } function in class:cricket::TurnServer
  /external/opencv3/modules/core/src/
cuda_stream.cpp 71 std::vector<size_t> allocations; member in class:__anon20813::MemoryStack
87 allocations.push_back(size);
99 CV_Assert( allocSize == allocations.back() );
100 allocations.pop_back();
  /external/v8/include/
v8-profiler.h 429 * AllocationProfile is a sampled profile of allocations done by the program.
487 * allocations. The lifetime of the children is scoped to the containing
493 * List of self allocations done by this node in the call-graph.
495 std::vector<Allocation> allocations; member in struct:v8::AllocationProfile::Node
623 * allocations and builds an online 'sampling' heap profile. At any point in
632 * Allocations are sampled using a randomized Poisson process. On average, one
638 * newspace allocations. Support for paged space allocation (e.g. pre-tenured
639 * objects, large objects, code objects, etc.) and native allocations
657 * Returns the sampled profile of allocations allocated (and still live) since
  /external/compiler-rt/lib/lsan/
lsan_common.cc 324 LOG_POINTERS("Processing platform-specific allocations.\n");
588 uptr bytes = 0, allocations = 0; local
592 allocations += leaks_[i].hit_count;
596 allocations);
  /frameworks/base/core/jni/
android_os_Debug.cpp 887 * size_t allocations
891 * array of function pointers, and "allocations" is the number of
892 * allocations with the exact same size and backtrace.
894 * The entries are sorted by descending total size (i.e. size*allocations)
936 size_t allocations = *(size_t*) (ptr + sizeof(size_t)); local
942 allocations);
    [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 
ddmlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmuilib/24.4.0-beta6/
ddmuilib-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmuilib/24.5.0/
ddmuilib-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmuilib/25.0.0-alpha1/
ddmuilib-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.1.0/
ddmlib-23.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.1.3/
ddmlib-23.1.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.1.4/
ddmlib-23.1.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.2.0/
ddmlib-23.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.2.1/
ddmlib-23.2.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.2.2/
ddmlib-23.2.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.2.4/
ddmlib-23.2.4.jar 

Completed in 3330 milliseconds

1 2 3 4 5