MCPcopy Create free account
hub / github.com/dfranx/ShaderDebugger / New

Function New

src/HLSLCompiler.cpp:223–227  ·  view source on GitHub ↗

hlslparser allocator functions

Source from the content-addressed store, hash-verified

221
222 // hlslparser allocator functions
223 void* New(void* userData, size_t size)
224 {
225 (void)userData;
226 return malloc(size);
227 }
228 void* NewArray(void* userData, size_t size, size_t count)
229 {
230 (void)userData;

Callers 15

ParserMethod · 0.85
StringizeMethod · 0.85
EvalDefOpMethod · 0.85
ReplaceIdentMethod · 0.85
HandleTheFileMacroMethod · 0.85
HandleTheLineMacroMethod · 0.85
TokenizeMethod · 0.85
MakeTokenMethod · 0.85
MakeNewLineMethod · 0.85
MayCastMethod · 0.85
MaxTypeMethod · 0.85
IntegerPromoteMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected