Home
last modified time | relevance | path

Searched refs:currentFunc (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/Shader/
DShader.cpp1973 FunctionID currentFunc = MAIN_ID; in analyzeLimits() local
1979 if (currentFunc == INVALID_ID) in analyzeLimits()
1988 currentFunc = INVALID_ID; in analyzeLimits()
2000 currentFunc = MAIN_ID; in analyzeLimits()
2009 if (currentFunc == INVALID_ID) in analyzeLimits()
2014 currentFunc = id; in analyzeLimits()
2021 ASSERT(currentFunc != INVALID_ID); in analyzeLimits()
2024 functions[currentFunc].calls.emplace(id); in analyzeLimits()
2033 ASSERT(currentFunc != INVALID_ID); in analyzeLimits()
2035 auto& func = functions[currentFunc]; in analyzeLimits()
[all …]
/external/angle/src/compiler/translator/tree_ops/vulkan/
DReplaceForShaderFramebufferFetch.cpp359 TFunction **currentFunc = &(*functionMap)[inputType]; in CreateSubpassLoadFuncCall() local
360 if (*currentFunc == nullptr) in CreateSubpassLoadFuncCall()
363 *currentFunc = new TFunction(symbolTable, GetFunctionNameOfSubpassLoad(inputType), in CreateSubpassLoadFuncCall()
366 (*currentFunc) in CreateSubpassLoadFuncCall()
371 return TIntermAggregate::CreateFunctionCall(**currentFunc, arguments); in CreateSubpassLoadFuncCall()