Searched defs:EV (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_backend.cpp197 const RSExportVar *EV = *I; local
198 const RSExportType *ET = EV->getType();
203 llvm::MDString::get(mLLVMContext, EV->getName().c_str()));
245 EV->getType()->getName().c_str()));
H A Dslang_rs_reflection_cpp.cpp361 const RSExportVar *EV = *I; local
362 if (!EV->getInit().isUninit()) {
363 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit());
365 genZeroInitExportVariable(EV->getName());
503 const RSExportVar *EV = *I; local
504 const RSExportType *ET = EV->getType();
508 genGetterAndSetter(static_cast<const RSExportPrimitiveType *>(ET), EV); local
513 genPointerTypeExportVariable(EV);
517 genGetterAndSetter(static_cast<const RSExportVectorType *>(ET), EV); local
526 EV); local
530 genGetterAndSetter(static_cast<const RSExportRecordType *>(ET), EV); local
538 genGetterAndSetter(const RSExportPrimitiveType *EPT, const RSExportVar *EV) argument
572 genPointerTypeExportVariable(const RSExportVar *EV) argument
606 genGetterAndSetter(const RSExportVectorType *EVT, const RSExportVar *EV) argument
638 genMatrixTypeExportVariable(const RSExportVar *EV) argument
642 genGetterAndSetter(const RSExportConstantArrayType *AT, const RSExportVar *EV) argument
647 genGetterAndSetter(const RSExportRecordType *ERT, const RSExportVar *EV) argument
[all...]
H A Dslang_rs_reflection.cpp394 const RSExportVar *EV = *I; local
395 if (!EV->getInit().isUninit()) {
396 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit());
397 } else if (EV->getArraySize()) {
399 mOut.indent() << RS_EXPORT_VAR_PREFIX << EV->getName() << " = new "
400 << GetTypeName(EV->getType(), false) << "["
401 << EV->getArraySize() << "];\n";
402 size_t NumInits = EV
578 genExportVariable(const RSExportVar *EV) argument
936 genPrimitiveTypeExportVariable(const RSExportVar *EV) argument
1042 genPointerTypeExportVariable(const RSExportVar *EV) argument
1076 genVectorTypeExportVariable(const RSExportVar *EV) argument
1089 genMatrixTypeExportVariable(const RSExportVar *EV) argument
1119 genConstantArrayTypeExportVariable(const RSExportVar *EV) argument
1133 genRecordTypeExportVariable(const RSExportVar *EV) argument
1152 genSetExportVariable(const std::string &TypeName, const RSExportVar *EV) argument
[all...]

Completed in 56 milliseconds