Searched defs:EF (Results 1 - 4 of 4) sorted by path

/frameworks/compile/slang/
H A Dslang_rs_backend.cpp280 const RSExportFunc *EF = *I; local
283 if (!EF->hasParam()) {
285 EF->getName().c_str()));
287 llvm::Function *F = M->getFunction(EF->getName());
289 const std::string HelperFunctionName(".helper_" + EF->getName());
313 if (!EF->checkParameterPacketType(HelperFunctionParameterTy)) {
316 EF->getName().c_str());
318 const RSExportRecordType *Expected = EF->getParamPacketType();
365 for (size_t i = 0; i < EF->getNumParameters(); i++) {
H A Dslang_rs_context.cpp113 RSExportFunc *EF = RSExportFunc::Create(this, FD); local
114 if (EF == NULL)
117 mExportFuncs.push_back(EF);
H A Dslang_rs_reflection.cpp422 const RSExportForEach *EF = *I; local
424 const RSExportForEach::InTypeVec &InTypes = EF->getInTypes();
433 const RSExportType *OET = EF->getOutType();
613 void RSReflectionJava::genExportFunction(const RSExportFunc *EF) { argument
615 << EF->getName() << " = " << getNextExportFuncSlot() << ";\n";
620 if (EF->hasParam()) {
621 for (RSExportFunc::const_param_iterator I = EF->params_begin(),
622 E = EF->params_end();
630 "invoke_" + EF->getName(/*Mangle=*/false),
635 if (!EF
670 genExportForEach(const RSExportForEach *EF) argument
[all...]
H A Dslang_rs_reflection_cpp.cpp183 const RSExportForEach *EF = *I; local
184 const RSExportType *OET = EF->getOutType();
190 const RSExportForEach::InTypeVec &InTypes = EF->getInTypes();

Completed in 221 milliseconds