HomeSort by relevance Sort by last modified time
    Searched defs:EF (Results 1 - 4 of 4) 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 292 const RSExportFunc *EF = *I;
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++) {
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 507 const MCEncodedFragment &EF = cast<MCEncodedFragment>(F);
508 OW->WriteBytes(EF.getContents());
    [all...]

Completed in 79 milliseconds