Searched defs:EF (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_backend.cpp292 const RSExportFunc *EF = *I; local
295 if (!EF->hasParam()) {
297 EF->getName().c_str()));
299 llvm::Function *F = M->getFunction(EF->getName());
301 const std::string HelperFunctionName(".helper_" + EF->getName());
319 if (!EF->checkParameterPacketType(HelperFunctionParameterTy)) {
322 EF->getName().c_str());
324 const RSExportRecordType *Expected = EF->getParamPacketType();
371 for (size_t i = 0; i < EF->getNumParameters(); i++) {
H A Dslang_rs_context.cpp130 RSExportFunc *EF = RSExportFunc::Create(this, FD); local
131 if (EF == NULL)
134 mExportFuncs.push_back(EF);
H A Dslang_rs_reflection.cpp381 const RSExportForEach *EF = *I; local
383 const RSExportType *IET = EF->getInType();
387 const RSExportType *OET = EF->getOutType();
590 void RSReflection::genExportFunction(Context &C, const RSExportFunc *EF) { argument
592 << EF->getName() << " = " << C.getNextExportFuncSlot() << ";"
598 if (EF->hasParam()) {
599 for (RSExportFunc::const_param_iterator I = EF->params_begin(),
600 E = EF->params_end();
611 "invoke_" + EF->getName(/*Mangle=*/ false),
616 if (!EF
634 genExportForEach(Context &C, const RSExportForEach *EF) argument
[all...]

Completed in 1536 milliseconds