MCPcopy Create free account
hub / github.com/Gecode/gecode / ralloc

Method ralloc

gecode/kernel/core.hpp:2827–2830  ·  view source on GitHub ↗

Space allocation: general space heaps and free lists

Source from the content-addressed store, hash-verified

2825
2826 // Space allocation: general space heaps and free lists
2827 forceinline void*
2828 Space::ralloc(size_t s) {
2829 return mm.alloc(ssd.data().sm,s);
2830 }
2831 forceinline void
2832 Space::rfree(void* p, size_t s) {
2833 return mm.reuse(p,s);

Callers 15

initMethod · 0.45
operator newMethod · 0.45
operator newMethod · 0.45
operator newMethod · 0.45
operator newMethod · 0.45
operator newMethod · 0.45
operator newMethod · 0.45
BElementExprMethod · 0.45
operator newMethod · 0.45
p_regularFunction · 0.45
allocateMethod · 0.45
allocateMethod · 0.45

Calls 2

dataMethod · 0.80
allocMethod · 0.45

Tested by

no test coverage detected