Home
last modified time | relevance | path

Searched refs:EPT (Results 1 – 6 of 6) sorted by relevance

/frameworks/compile/slang/
Dslang_rs_reflection_cpp.cpp64 const RSExportPrimitiveType *EPT = in GetTypeName() local
66 if (EPT->isRSObjectType()) { in GetTypeName()
68 RSExportPrimitiveType::getRSReflectionType(EPT)->c_name + ">"; in GetTypeName()
70 return RSExportPrimitiveType::getRSReflectionType(EPT)->c_name; in GetTypeName()
537 void RSReflectionCpp::genGetterAndSetter(const RSExportPrimitiveType *EPT, in genGetterAndSetter() argument
540 EPT->convertToRTD(&rtd); in genGetterAndSetter()
541 std::string TypeName = GetTypeName(EPT, false); in genGetterAndSetter()
547 if (EPT->isRSObjectType()) { in genGetterAndSetter()
804 const RSExportPointerType *EPT = in genTypeCheck() local
806 ET = EPT->getPointeeType(); in genTypeCheck()
[all …]
Dslang_rs_export_element.cpp92 RSExportPrimitiveType *EPT = in Create() local
98 slangAssert(EI->type == EPT->getType() && "Element has unexpected type"); in Create()
99 ET = EPT; in Create()
Dslang_rs_reflection.cpp133 static const char *GetPackerAPIName(const RSExportPrimitiveType *EPT) { in GetPackerAPIName() argument
166 unsigned TypeId = EPT->getType(); in GetPackerAPIName()
169 return PrimitiveTypePackerAPINameMap[EPT->getType()]; in GetPackerAPIName()
221 const RSExportPrimitiveType *EPT = in GetTypeNullValue() local
223 if (EPT->isRSObjectType()) in GetTypeNullValue()
225 else if (EPT->getType() == DataTypeBoolean) in GetTypeNullValue()
481 const RSExportPrimitiveType *EPT = in genInitExportVariable() local
483 if (EPT->getType() == DataTypeBoolean) { in genInitExportVariable()
864 const RSExportPointerType *EPT = in genTypeInstanceFromPointer() local
866 genTypeInstance(EPT->getPointeeType()); in genTypeInstanceFromPointer()
[all …]
Dslang_rs_export_type.h341 static size_t GetSizeInBits(const RSExportPrimitiveType *EPT);
352 const RSExportPrimitiveType *EPT) { in getRSReflectionType() argument
353 return getRSReflectionType(EPT->getType()); in getRSReflectionType()
Dslang_rs_export_type.cpp1054 size_t RSExportPrimitiveType::GetSizeInBits(const RSExportPrimitiveType *EPT) { in GetSizeInBits() argument
1055 int type = EPT->getType(); in GetSizeInBits()
1059 if (EPT->isRSObjectType() && EPT->getRSContext()->is64Bit()) { in GetSizeInBits()
1562 const RSExportPrimitiveType *EPT = static_cast<const RSExportPrimitiveType*>(this); in convertToRTD() local
1563 rtd->type = RSExportPrimitiveType::getRSReflectionType(EPT); in convertToRTD()
1567 const RSExportPointerType *EPT = static_cast<const RSExportPointerType*>(this); in convertToRTD() local
1568 const RSExportType *PointeeType = EPT->getPointeeType(); in convertToRTD()
Dslang_rs_reflection_cpp.h116 void genGetterAndSetter(const RSExportPrimitiveType *EPT, const RSExportVar* EV);