Searched refs:PrimaryHeap (Results 1 – 3 of 3) sorted by relevance
50 enum HeapType { PrimaryHeap, NumberHeap }; enumerator70 typedef CollectorHeapIterator<PrimaryHeap> iterator;80 void* inlineAllocate(size_t s) { return heapAllocate<PrimaryHeap>(s); } in inlineAllocate()244 template <> struct HeapConstants<PrimaryHeap> {
187 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()
5242 void* JSC::Heap::heapAllocate(size_t) [with JSC::HeapType heapType = PrimaryHeap])