Searched refs:numLiveObjectsAtLastCollect (Results 1 – 3 of 3) sorted by relevance
298 size_t numLiveObjectsAtLastCollect = heap.numLiveObjectsAtLastCollect; in heapAllocate() local299 size_t numNewObjects = numLiveObjects - numLiveObjectsAtLastCollect; in heapAllocate()301 if (newCost >= ALLOCATIONS_PER_COLLECTION && newCost >= numLiveObjectsAtLastCollect) in heapAllocate()329 size_t numLiveObjectsAtLastCollect = heap.numLiveObjectsAtLastCollect; in heapAllocate()330 size_t numNewObjects = numLiveObjects - numLiveObjectsAtLastCollect; in heapAllocate()333 if (newCost >= ALLOCATIONS_PER_COLLECTION && newCost >= numLiveObjectsAtLastCollect) { in heapAllocate()958 heap.numLiveObjectsAtLastCollect = numLiveObjects; in sweep()
60 size_t numLiveObjectsAtLastCollect; member
20966 Use numLiveObjectsAtLastCollect instead of numAllocationsSinceLastCollect so we don't20976 … into a local variable to cut down on global variable accesses. Set numLiveObjectsAtLastCollect