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

  /external/linux-tools-perf/
builtin-kmem.c 339 static double fragmentation(unsigned long n_req, unsigned long n_alloc) function
394 fragmentation(data->bytes_req, data->bytes_alloc));
410 printf("Total bytes wasted on internal fragmentation: %lu\n",
412 printf("Internal fragmentation: %f%%\n",
413 fragmentation(total_requested, total_allocated));
578 x = fragmentation(l->bytes_req, l->bytes_alloc);
579 y = fragmentation(r->bytes_req, r->bytes_alloc);
  /external/chromium_org/v8/src/
mark-compact.cc 673 // Returns zero for pages that have so little fragmentation that it is not
675 // estimate of fragmentation on an arbitrary scale.
752 int fragmentation() { return fragmentation_; } function in class:v8::internal::Candidate
805 int fragmentation = 0; local
818 if ((counter & 1) == (page_number & 1)) fragmentation = 1;
839 fragmentation = free_pct;
841 fragmentation = 0;
850 (fragmentation > 0) ? "[fragmented]" : "");
853 fragmentation = FreeListFragmentation(space, p);
856 if (fragmentation != 0)
    [all...]
  /external/v8/src/
mark-compact.cc 438 // Returns zero for pages that have so little fragmentation that it is not
440 // estimate of fragmentation on an arbitrary scale.
519 int fragmentation() { return fragmentation_; } function in class:v8::internal::Candidate
558 int fragmentation = 0; local
571 if ((counter & 1) == (page_number & 1)) fragmentation = 1;
592 fragmentation = free_pct;
594 fragmentation = 0;
603 (fragmentation > 0) ? "[fragmented]" : "");
606 fragmentation = FreeListFragmentation(space, p);
609 if (fragmentation != 0)
    [all...]

Completed in 334 milliseconds