Searched refs:fnCandidate (Results 1 – 4 of 4) sorted by relevance
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | ParseHelper.cpp | 1062 const TFunction* fnCandidate; in handleFunctionCall() local 1064 fnCandidate = findFunction(loc, *function, builtIn); in handleFunctionCall() 1065 if (fnCandidate) { in handleFunctionCall() 1072 if (builtIn && fnCandidate->getNumExtensions()) in handleFunctionCall() 1073 …requireExtensions(loc, fnCandidate->getNumExtensions(), fnCandidate->getExtensions(), fnCandidate-… in handleFunctionCall() 1075 if (builtIn && fnCandidate->getType().containsBasicType(EbtFloat16)) in handleFunctionCall() 1077 if (builtIn && fnCandidate->getType().contains16BitInt()) in handleFunctionCall() 1079 if (builtIn && fnCandidate->getType().contains8BitInt()) in handleFunctionCall() 1085 for (int i = 0; i < fnCandidate->getParamCount(); ++i) { in handleFunctionCall() 1089 …TIntermNode* arg = fnCandidate->getParamCount() == 1 ? arguments : (aggregate ? aggregate->getSequ… in handleFunctionCall() [all …]
|
/external/swiftshader/src/OpenGL/compiler/ |
D | ParseHelper.cpp | 1083 bool TParseContext::functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *ag… in functionCallLValueErrorCheck() argument 1085 for(size_t i = 0; i < fnCandidate->getParamCount(); ++i) in functionCallLValueErrorCheck() 1087 TQualifier qual = fnCandidate->getParam(i).type->getQualifier(); in functionCallLValueErrorCheck() 3584 const TFunction *fnCandidate; in addFunctionCallOrMethod() local 3586 fnCandidate = findFunction(loc, fnCall, &builtIn); in addFunctionCallOrMethod() 3587 if(fnCandidate) in addFunctionCallOrMethod() 3592 if(builtIn && !fnCandidate->getExtension().empty() && in addFunctionCallOrMethod() 3593 extensionErrorCheck(loc, fnCandidate->getExtension())) in addFunctionCallOrMethod() 3597 op = fnCandidate->getBuiltInOp(); in addFunctionCallOrMethod() 3603 if(fnCandidate->getParamCount() == 1) in addFunctionCallOrMethod() [all …]
|
D | ParseHelper.h | 144 bool functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *);
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslParseHelper.cpp | 5275 const TFunction* fnCandidate = nullptr; in handleFunctionCall() local 5310 fnCandidate = symbol->getAsFunction(); in handleFunctionCall() 5315 if (fnCandidate == nullptr) in handleFunctionCall() 5316 fnCandidate = findFunction(loc, *function, builtIn, thisDepth, arguments); in handleFunctionCall() 5318 if (fnCandidate) { in handleFunctionCall() 5325 if (builtIn && fnCandidate->getNumExtensions()) in handleFunctionCall() 5326 … requireExtensions(loc, fnCandidate->getNumExtensions(), fnCandidate->getExtensions(), in handleFunctionCall() 5327 fnCandidate->getName().c_str()); in handleFunctionCall() 5332 callerName = fnCandidate->getMangledName(); in handleFunctionCall() 5336 callerName += fnCandidate->getMangledName(); in handleFunctionCall() [all …]
|