MCPcopy Create free account
hub / github.com/WheretIB/nullc / AllocArray

Method AllocArray

NULLC/translation/runtime.cpp:1361–1367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1359}
1360
1361NULLCArray<void> NULLC::AllocArray(int size, int count, unsigned typeID)
1362{
1363 NULLCArray<void> ret;
1364 ret.ptr = (char*)AllocObject(count * size, typeID);
1365 ret.size = count;
1366 return ret;
1367}
1368
1369void NULLC::MarkMemory(unsigned int number)
1370{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected