MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / stackAlloc

Method stackAlloc

include/hx/StackContext.h:563–568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

561 pointer += sizeof(T);
562 }
563 unsigned char *stackAlloc(int inSize)
564 {
565 unsigned char *p = pointer;
566 pointer += inSize;
567 return p;
568 }
569 void stackFree(int inSize)
570 {
571 pointer -= inSize;

Callers 1

CppiaStackFrameMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected