Searched defs:EV (Results 1 - 3 of 3) sorted by relevance
/frameworks/compile/slang/ |
H A D | slang_rs_reflection_cpp.cpp | 483 const RSExportVar *EV = *I; local 484 if (!EV->getInit().isUninit()) { 485 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit()); 487 genZeroInitExportVariable(EV->getName()); 516 const RSExportVar *EV = *I; local 517 const RSExportType *ET = EV->getType(); 521 genGetterAndSetter(static_cast<const RSExportPrimitiveType *>(ET), EV); local 526 genPointerTypeExportVariable(EV); 530 genGetterAndSetter(static_cast<const RSExportVectorType *>(ET), EV); local 539 EV); local 543 genGetterAndSetter(static_cast<const RSExportRecordType *>(ET), EV); local 551 genGetterAndSetter(const RSExportPrimitiveType *EPT, const RSExportVar *EV) argument 585 genPointerTypeExportVariable(const RSExportVar *EV) argument 619 genGetterAndSetter(const RSExportVectorType *EVT, const RSExportVar *EV) argument 651 genMatrixTypeExportVariable(const RSExportVar *EV) argument 678 genGetterAndSetter(const RSExportConstantArrayType *AT, const RSExportVar *EV) argument 699 genGetterAndSetter(const RSExportRecordType *ERT, const RSExportVar *EV) argument [all...] |
H A D | slang_backend.cpp | 764 const RSExportVar *EV = *I; local 765 const RSExportType *ET = EV->getType(); 770 llvm::MDString::get(mLLVMContext, EV->getName().c_str())); 812 EV->getType()->getName().c_str()));
|
H A D | slang_rs_reflection.cpp | 646 const RSExportVar *EV = *I; local 647 if (!EV->getInit().isUninit()) { 648 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit()); 649 } else if (EV->getArraySize()) { 651 mOut.indent() << RS_EXPORT_VAR_PREFIX << EV->getName() << " = new " 652 << GetTypeName(EV->getType(), TypeNameDefault & ~TypeNameWithConstantArrayBrackets) << "[" 653 << EV->getArraySize() << "];\n"; 654 size_t NumInits = EV 860 genExportVariable(const RSExportVar *EV) argument 1855 genPrimitiveTypeExportVariable(const RSExportVar *EV) argument 1961 genPointerTypeExportVariable(const RSExportVar *EV) argument 1995 genVectorTypeExportVariable(const RSExportVar *EV) argument 2008 genMatrixTypeExportVariable(const RSExportVar *EV) argument 2038 genConstantArrayTypeExportVariable(const RSExportVar *EV, ReflectionState::Val32 AllocSize32) argument 2056 genRecordTypeExportVariable(const RSExportVar *EV, ReflectionState::Val32 AllocSize32) argument 2077 genSetExportVariable(const std::string &TypeName, const RSExportVar *EV, unsigned Dimension, ReflectionState::Val32 AllocSize32) argument [all...] |
Completed in 290 milliseconds