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

/external/chromium_org/v8/src/
H A Dmark-compact.cc680 intptr_t ratio_threshold; local
685 ratio_threshold = 10;
689 ratio_threshold = 15;
708 (ratio > ratio_threshold) ? "[fragmented]" : "");
715 if (ratio <= ratio_threshold) return 0; // Not fragmented.
717 return static_cast<int>(ratio - ratio_threshold);
/external/v8/src/
H A Dmark-compact.cc457 intptr_t ratio_threshold; local
462 ratio_threshold = 10;
466 ratio_threshold = 15;
485 (ratio > ratio_threshold) ? "[fragmented]" : "");
492 if (ratio <= ratio_threshold) return 0; // Not fragmented.
494 return static_cast<int>(ratio - ratio_threshold);

Completed in 64 milliseconds