HomeSort by relevance Sort by last modified time
    Searched defs:EF (Results 1 - 5 of 5) sorted by null

  /frameworks/compile/slang/
slang_rs_context.cpp 132 RSExportFunc *EF = RSExportFunc::Create(this, FD);
133 if (EF == NULL)
136 mExportFuncs.push_back(EF);
slang_rs_backend.cpp 280 const RSExportFunc *EF = *I;
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());
307 if (!EF->checkParameterPacketType(HelperFunctionParameterTy)) {
310 EF->getName().c_str());
312 const RSExportRecordType *Expected = EF->getParamPacketType();
359 for (size_t i = 0; i < EF->getNumParameters(); i++) {
slang_rs_reflection_cpp.cpp 184 const RSExportForEach *EF = *I;
185 const RSExportType *IET = EF->getInType();
186 const RSExportType *OET = EF->getOutType();
223 const RSExportForEach *ef = *I; local
224 if (ef->isDummyRoot()) {
231 ss << "void forEach_" << ef->getName() << "(";
233 if (ef->hasIn()) {
238 if (ef->hasOut() || ef->hasReturn()) {
243 const RSExportRecordType *ERT = ef->getParamPacketType()
262 const RSExportFunc *ef = *I; local
357 const RSExportForEach *ef = *I; local
438 const RSExportFunc *ef = *I; local
    [all...]
slang_rs_reflection.cpp 392 const RSExportForEach *EF = *I;
394 const RSExportType *IET = EF->getInType();
398 const RSExportType *OET = EF->getOutType();
601 void RSReflection::genExportFunction(Context &C, const RSExportFunc *EF) {
603 << EF->getName() << " = " << C.getNextExportFuncSlot() << ";"
609 if (EF->hasParam()) {
610 for (RSExportFunc::const_param_iterator I = EF->params_begin(),
611 E = EF->params_end();
622 "invoke_" + EF->getName(/*Mangle=*/ false),
627 if (!EF->hasParam())
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 537 const MCEncodedFragment &EF = cast<MCEncodedFragment>(F);
538 OW->WriteBytes(EF.getContents());
    [all...]

Completed in 948 milliseconds