Home
last modified time | relevance | path

Searched refs:EPT (Results 1 – 4 of 4) 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.cpp113 static const char *GetPackerAPIName(const RSExportPrimitiveType *EPT) { in GetPackerAPIName() argument
149 unsigned TypeId = EPT->getType(); in GetPackerAPIName()
152 return PrimitiveTypePackerAPINameMap[ EPT->getType() ]; in GetPackerAPIName()
207 const RSExportPrimitiveType *EPT = in GetTypeNullValue() local
209 if (EPT->isRSObjectType()) in GetTypeNullValue()
211 else if (EPT->getType() == RSExportPrimitiveType::DataTypeBoolean) in GetTypeNullValue()
411 const RSExportPrimitiveType *EPT = in genInitExportVariable() local
413 if (EPT->getType() == RSExportPrimitiveType::DataTypeBoolean) { in genInitExportVariable()
696 const RSExportPointerType *EPT = in genTypeInstanceFromPointer() local
698 genTypeInstance(C, EPT->getPointeeType()); in genTypeInstanceFromPointer()
[all …]
Dslang_rs_export_type.h298 static size_t GetSizeInBits(const RSExportPrimitiveType *EPT);
309 const RSExportPrimitiveType *EPT) { in getRSReflectionType() argument
310 return getRSReflectionType(EPT->getType()); in getRSReflectionType()
Dslang_rs_export_type.cpp892 size_t RSExportPrimitiveType::GetSizeInBits(const RSExportPrimitiveType *EPT) { in GetSizeInBits() argument
893 slangAssert(((EPT->getType() > DataTypeUnknown) && in GetSizeInBits()
894 (EPT->getType() < DataTypeMax)) && in GetSizeInBits()
896 return SizeOfDataTypeInBits[ static_cast<int>(EPT->getType()) ]; in GetSizeInBits()
1504 const RSExportPrimitiveType *EPT = static_cast<const RSExportPrimitiveType*>(this); in convertToRTD() local
1505 rtd->type = RSExportPrimitiveType::getRSReflectionType(EPT); in convertToRTD()
1509 const RSExportPointerType *EPT = static_cast<const RSExportPointerType*>(this); in convertToRTD() local
1510 const RSExportType *PointeeType = EPT->getPointeeType(); in convertToRTD()