Home
last modified time | relevance | path

Searched refs:gcHeapGrowthFactor_ (Results 1 – 6 of 6) sorted by relevance

/dports/lang/spidermonkey60/firefox-60.9.0/js/src/gc/
H A DScheduling.h553 GCLockData<double> gcHeapGrowthFactor_; variable
559 ZoneHeapThreshold() : gcHeapGrowthFactor_(3.0), gcTriggerBytes_(0) {} in ZoneHeapThreshold()
561 double gcHeapGrowthFactor() const { return gcHeapGrowthFactor_; } in gcHeapGrowthFactor()
H A DGC.cpp1752 gcHeapGrowthFactor_ = in updateAfterGC()
1754 gcTriggerBytes_ = computeZoneTriggerBytes(gcHeapGrowthFactor_, lastBytes, in updateAfterGC()
1760 size_t amount = ArenaSize * gcHeapGrowthFactor_; in updateForRemovedArena()
1765 tunables.gcZoneAllocThresholdBase() * gcHeapGrowthFactor_)) { in updateForRemovedArena()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/gc/
H A DZone.h36 double gcHeapGrowthFactor_; variable
43 : gcHeapGrowthFactor_(3.0), in ZoneHeapThreshold()
47 double gcHeapGrowthFactor() const { return gcHeapGrowthFactor_; } in gcHeapGrowthFactor()
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/gc/
H A DZone.h35 double gcHeapGrowthFactor_; variable
42 : gcHeapGrowthFactor_(3.0), in ZoneHeapThreshold()
46 double gcHeapGrowthFactor() const { return gcHeapGrowthFactor_; } in gcHeapGrowthFactor()
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/
H A Djsgc.cpp1647 gcHeapGrowthFactor_ = computeZoneHeapGrowthFactorForHeapSize(lastBytes, tunables, state);
1648 gcTriggerBytes_ = computeZoneTriggerBytes(gcHeapGrowthFactor_, lastBytes, gckind, tunables,
1655 size_t amount = ArenaSize * gcHeapGrowthFactor_;
1659 (gcTriggerBytes_ - amount < tunables.gcZoneAllocThresholdBase() * gcHeapGrowthFactor_))
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/
H A Djsgc.cpp1868 gcHeapGrowthFactor_ = computeZoneHeapGrowthFactorForHeapSize(lastBytes, tunables, state); in updateAfterGC()
1869 gcTriggerBytes_ = computeZoneTriggerBytes(gcHeapGrowthFactor_, lastBytes, gckind, tunables, in updateAfterGC()
1876 size_t amount = ArenaSize * gcHeapGrowthFactor_; in updateForRemovedArena()
1881 if (gcTriggerBytes_ - amount < tunables.gcZoneAllocThresholdBase() * gcHeapGrowthFactor_) in updateForRemovedArena()