Searched refs:heap (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/debug/
H A Dheap.cpp2 * Inkscape::Debug::Heap - interface for gathering heap statistics
17 #include "debug/gc-heap.h"
18 #include "debug/sysv-heap.h"
49 void register_extra_heap(Heap &heap) { argument
50 heaps().push_back(&heap);
H A Dheap.h2 * Inkscape::Debug::Heap - interface for gathering heap statistics
47 void register_extra_heap(Heap &heap);
/inkscape/src/2geom/
H A Dsweeper.h161 static Event _get_next(std::vector<Event> &heap) { argument
162 if (heap.empty()) {
166 boost::pop_heap(heap);
167 Event ret = heap.back();
168 heap.pop_back();
/inkscape/src/ui/dialog/
H A Dmemory.cpp24 #include "debug/heap.h"
98 // TRANSLATORS: "Slack" refers to memory which is in the heap but currently unused.
125 Debug::Heap *heap=Debug::get_heap(i); local
126 if (heap) {
127 Debug::Heap::Stats stats=heap->stats();
128 int features=heap->features();
136 row->set_value(columns.name, Glib::ustring(heap->name()));

Completed in 174 milliseconds