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

  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator64_test.cc 92 uptr total_allocated = a.TotalMemoryUsed(); local
94 last_total_allocated = total_allocated;
95 CHECK_EQ(last_total_allocated, total_allocated);
255 uptr total_allocated = a.TotalMemoryUsed(); local
257 CHECK_EQ(saved_total, total_allocated);
258 saved_total = total_allocated;
  /external/v8/test/cctest/
test-alloc.cc 211 int total_allocated = 0; local
214 while (total_allocated < 5 * code_range_size) {
229 total_allocated += static_cast<int>(allocated);
  /external/linux-tools-perf/
builtin-kmem.c 60 static unsigned long total_requested, total_allocated; variable
219 total_allocated += bytes_alloc;
409 printf("Total bytes allocated: %lu\n", total_allocated);
411 total_allocated - total_requested);
413 fragmentation(total_requested, total_allocated));

Completed in 932 milliseconds