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

Function stack_allocate

src/engine/function.cpp:257–263  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255}
256
257void * stack_allocate( STACK * s, int32_t size )
258{
259 check_alignment( s );
260 s->data = (char *)s->data - size;
261 check_alignment( s );
262 return s->data;
263}
264
265void stack_deallocate( STACK * s, int32_t size )
266{

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