MCPcopy Create free account
hub / github.com/boostorg/build / stack_allocate

Function stack_allocate

v2/engine/function.c:236–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

234}
235
236void * stack_allocate( STACK * s, int size )
237{
238 check_alignment( s );
239 s->data = (char *)s->data - size;
240 check_alignment( s );
241 return s->data;
242}
243
244void stack_deallocate( STACK * s, int size )
245{

Callers 4

stack_pushFunction · 0.85
expand_modifiersFunction · 0.85
function_run_actionsFunction · 0.85
function_runFunction · 0.85

Calls 1

check_alignmentFunction · 0.85

Tested by

no test coverage detected