Searched refs:fragmentation (Results 1 - 2 of 2) sorted by relevance

/external/linux-tools-perf/
H A Dbuiltin-kmem.c339 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/v8/src/
H A Dmark-compact.cc438 // 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 !
[all...]

Completed in 104 milliseconds