Home
last modified time | relevance | path

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

/frameworks/compile/slang/
Dslang_rs_export_element.cpp81 RSExportPrimitiveType *EPT = in Create() local
87 slangAssert(EI->type == EPT->getType() && "Element has unexpected type"); in Create()
88 ET = EPT; in Create()
Dslang_rs_reflection.cpp117 static const char *GetPackerAPIName(const RSExportPrimitiveType *EPT) { in GetPackerAPIName() argument
153 unsigned TypeId = EPT->getType(); in GetPackerAPIName()
156 return PrimitiveTypePackerAPINameMap[ EPT->getType() ]; in GetPackerAPIName()
211 const RSExportPrimitiveType *EPT = in GetTypeNullValue() local
213 if (EPT->isRSObjectType()) in GetTypeNullValue()
215 else if (EPT->getType() == RSExportPrimitiveType::DataTypeBoolean) in GetTypeNullValue()
459 const RSExportPrimitiveType *EPT = in genInitExportVariable() local
461 if (EPT->getType() == RSExportPrimitiveType::DataTypeBoolean) { in genInitExportVariable()
801 const RSExportPointerType *EPT = in genTypeInstanceFromPointer() local
803 genTypeInstance(C, EPT->getPointeeType()); in genTypeInstanceFromPointer()
[all …]
Dslang_rs_reflection_cpp.cpp800 const RSExportPointerType *EPT = in genTypeCheck() local
802 ET = EPT->getPointeeType(); in genTypeCheck()
839 const RSExportPointerType *EPT = in genTypeInstanceFromPointer() local
841 genTypeInstance(EPT->getPointeeType()); in genTypeInstanceFromPointer()
871 const RSExportPrimitiveType *EPT = in genInitExportVariable() local
873 if (EPT->getType() == RSExportPrimitiveType::DataTypeBoolean) { in genInitExportVariable()
Dslang_rs_export_type.h307 static size_t GetSizeInBits(const RSExportPrimitiveType *EPT);
318 const RSExportPrimitiveType *EPT) { in getRSReflectionType() argument
319 return getRSReflectionType(EPT->getType()); in getRSReflectionType()
Dslang_rs_export_type.cpp963 size_t RSExportPrimitiveType::GetSizeInBits(const RSExportPrimitiveType *EPT) { in GetSizeInBits() argument
964 slangAssert(((EPT->getType() > DataTypeUnknown) && in GetSizeInBits()
965 (EPT->getType() < DataTypeMax)) && in GetSizeInBits()
967 return SizeOfDataTypeInBits[ static_cast<int>(EPT->getType()) ]; in GetSizeInBits()
1575 const RSExportPrimitiveType *EPT = static_cast<const RSExportPrimitiveType*>(this); in convertToRTD() local
1576 rtd->type = RSExportPrimitiveType::getRSReflectionType(EPT); in convertToRTD()
1580 const RSExportPointerType *EPT = static_cast<const RSExportPointerType*>(this); in convertToRTD() local
1581 const RSExportType *PointeeType = EPT->getPointeeType(); in convertToRTD()