Home
last modified time | relevance | path

Searched refs:PrimaryHeap (Results 1 – 3 of 3) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DCollector.h50 enum HeapType { PrimaryHeap, NumberHeap }; enumerator
70 typedef CollectorHeapIterator<PrimaryHeap> iterator;
80 void* inlineAllocate(size_t s) { return heapAllocate<PrimaryHeap>(s); } in inlineAllocate()
244 template <> struct HeapConstants<PrimaryHeap> {
DCollector.cpp187 sweep<PrimaryHeap>(); in destroy()
311 CollectorHeap& heap = heapType == PrimaryHeap ? primaryHeap : numberHeap; in heapAllocate()
317 ASSERT(heapType == PrimaryHeap || heap.extraCost == 0); in heapAllocate()
333 if (heapType == PrimaryHeap && heap.extraCost > ALLOCATIONS_PER_COLLECTION) { in heapAllocate()
424 return heapAllocate<PrimaryHeap>(s); in allocate()
974 CollectorHeap& heap = heapType == PrimaryHeap ? primaryHeap : numberHeap; in sweep()
1104 size_t numLiveObjects = sweep<PrimaryHeap>(); in collect()
1134 JSC::addToStatistics<PrimaryHeap>(statistics, primaryHeap); in statistics()
/external/webkit/JavaScriptCore/
DChangeLog5242 void* JSC::Heap::heapAllocate(size_t) [with JSC::HeapType heapType = PrimaryHeap])