HomeSort by relevance Sort by last modified time
    Searched refs:EV (Results 1 - 13 of 13) sorted by null

  /frameworks/compile/slang/
slang_rs_reflection.cpp 323 const RSExportVar *EV = *I;
324 if (!EV->getInit().isUninit()) {
325 genInitExportVariable(C, EV->getType(), EV->getName(), EV->getInit());
326 } else if (EV->getArraySize()) {
328 C.indent() << RS_EXPORT_VAR_PREFIX << EV->getName() << " = new "
329 << GetTypeName(EV->getType(), false) << "["
330 << EV->getArraySize() << "];" << std::endl;
331 size_t NumInits = EV->getNumInits()
    [all...]
slang_rs_reflection.h 235 void genExportVariable(Context &C, const RSExportVar *EV);
236 void genPrimitiveTypeExportVariable(Context &C, const RSExportVar *EV);
237 void genPointerTypeExportVariable(Context &C, const RSExportVar *EV);
238 void genVectorTypeExportVariable(Context &C, const RSExportVar *EV);
239 void genMatrixTypeExportVariable(Context &C, const RSExportVar *EV);
240 void genConstantArrayTypeExportVariable(Context &C, const RSExportVar *EV);
241 void genRecordTypeExportVariable(Context &C, const RSExportVar *EV);
247 const RSExportVar *EV);
slang_rs_context.cpp 94 RSExportVar *EV = new RSExportVar(this, VD, ET);
95 if (EV == NULL)
98 mExportVars.push_back(EV);
llvm-rs-link.cpp 100 if (llvm::NamedMDNode *EV = M->getNamedMetadata(RS_EXPORT_VAR_MN))
101 Result |= GetExportSymbolNames(EV, RS_EXPORT_VAR_NAME, Names);
slang_rs_backend.cpp 220 const RSExportVar *EV = *I;
221 const RSExportType *ET = EV->getType();
226 llvm::MDString::get(mLLVMContext, EV->getName().c_str()));
261 EV->getType()->getName().c_str()));
  /external/oprofile/daemon/
opd_ibs_macro.h 389 #define AGG_IBS_EVENT(EV) opd_log_ibs_event(EV, trans)
395 #define AGG_IBS_COUNT(EV, COUNT) opd_log_ibs_count(EV, trans, COUNT)
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 257 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Ins))
258 if (EV->hasIndices())
259 index = *EV->idx_begin();
DeadArgumentElimination.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombine.h 199 Instruction *visitExtractValueInst(ExtractValueInst &EV);
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/clang/include/clang/AST/
Decl.h     [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp 8 enum Enum { EV };
    [all...]

Completed in 7761 milliseconds