OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ratio_threshold
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
mark-compact.cc
692
intptr_t
ratio_threshold
;
local
697
ratio_threshold
= 10;
701
ratio_threshold
= 15;
720
(ratio >
ratio_threshold
) ? "[fragmented]" : "");
727
if (ratio <=
ratio_threshold
) return 0; // Not fragmented.
729
return static_cast<int>(ratio -
ratio_threshold
);
[
all
...]
/external/v8/src/
mark-compact.cc
457
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
);
[
all
...]
Completed in 150 milliseconds