Home
last modified time | relevance | path

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

/dports/audio/linuxsampler/linuxsampler-2.2.0/src/scriptvm/
H A DScriptVM.cpp315 if (!context->globalIntMemory) in loadScriptOnePass()
316 context->globalIntMemory = new ArrayList<vmint>(); in loadScriptOnePass()
323 context->globalIntMemory->resize(context->globalIntVarCount); in loadScriptOnePass()
326 memset(&((*context->globalIntMemory)[0]), 0, context->globalIntVarCount * sizeof(vmint)); in loadScriptOnePass()
347 if (!ctx->globalIntMemory) { in dumpParsedScript()
H A Dtree.cpp829 (*context->globalIntMemory)[memPos] = intExpr->evalInt(); in assign()
841 return (*context->globalIntMemory)[memPos]; in evalInt()
1892 if (globalIntMemory) { in ~ParserContext()
1893 delete globalIntMemory; in ~ParserContext()
1894 globalIntMemory = NULL; in ~ParserContext()
H A Dtree.h999 ArrayList<vmint>* globalIntMemory; variable
1015 globalIntMemory(NULL), globalRealMemory(NULL), globalStrMemory(NULL), in ParserContext()