Home
last modified time | relevance | path

Searched refs:m3_AllocArray (Results 1 – 3 of 3) sorted by relevance

/dports/devel/wasm3/wasm3-0.5.0/source/
H A Dm3_module.c113 char* buff = m3_AllocArray(char, 16); in Module_GenerateNames()
125 char* buff = m3_AllocArray(char, 16); in Module_GenerateNames()
H A Dm3_parse.c54 io_module->funcTypes = m3_AllocArray (IM3FuncType, numTypes); in ParseSection_Type()
400 io_module->dataSegments = m3_AllocArray (M3DataSegment, numDataSegments); in ParseSection_Data()
H A Dm3_core.h218 #define m3_AllocArray(STRUCT, NUM) (STRUCT *)m3_Malloc (sizeof (STRUCT) * (NUM)) macro