Home
last modified time | relevance | path

Searched refs:retType (Results 1 – 7 of 7) sorted by relevance

/frameworks/rs/rsov/compiler/
DBuiltin.cpp193 for (auto retType : retTypes) { in addMapping() local
195 if (retType != "*") { in addMapping()
196 if (retType.back() == '+') { in addMapping()
197 retType.pop_back(); in addMapping()
199 retType.append(1, '0' + width); in addMapping()
202 suffixed.append("_").append(retType); in addMapping()
/frameworks/rs/rsov/compiler/spirit/
Dbuilder.cpp41 Builder::MakeFunctionDefinition(Instruction *retType, FunctionControl ctrl, in MakeFunctionDefinition() argument
43 FunctionInst *func = MakeFunction(retType, ctrl, funcType); in MakeFunctionDefinition()
Dbuilder.h33 FunctionDefinition *MakeFunctionDefinition(Instruction *retType,
Dmodule.cpp323 TypeFunctionInst *Module::getFunctionType(Instruction *retType, in getFunctionType() argument
326 return getGlobalSection()->getFunctionType(retType, argType, numArg); in getFunctionType()
330 Module::getFunctionType(Instruction *retType, in getFunctionType() argument
332 return getGlobalSection()->getFunctionType(retType, argTypes.data(), in getFunctionType()
838 TypeFunctionInst *GlobalSection::getFunctionType(Instruction *retType, in getFunctionType() argument
843 if (type->mOperand1.mInstruction != retType || in getFunctionType()
855 TypeFunctionInst *funcTy = mBuilder->MakeTypeFunction(retType); in getFunctionType()
Dmodule.h176 TypeFunctionInst *getFunctionType(Instruction *retType,
179 TypeFunctionInst *getFunctionType(Instruction *retType,
426 TypeFunctionInst *getFunctionType(Instruction *retType,
/frameworks/rs/script_api/
DSpecification.cpp534 std::string* retType, int* lineNumber) const { in getReturn() argument
535 *retType = expandString(mReturn->type, replacementIndexes); in getReturn()
743 string retType; in FunctionPermutation() local
745 spec->getReturn(replacementIndexes, &retType, &lineNumber); in FunctionPermutation()
746 if (!retType.empty()) { in FunctionPermutation()
748 mReturn->parseParameterDefinition(retType, "", "", lineNumber, true, scanner); in FunctionPermutation()
DSpecification.h420 void getReturn(int replacementIndexes[MAX_REPLACEABLES], std::string* retType,