Lines Matching refs:getType

111   unsigned TypeId = EPT->getType();
114 return PrimitiveTypeJavaNameMap[ EPT->getType() ];
133 switch (EVT->getType()) {
192 switch (EVT->getType()) {
311 unsigned TypeId = EPT->getType();
314 return PrimitiveTypePackerAPINameMap[ EPT->getType() ];
367 else if (EPT->getType() == RSExportPrimitiveType::DataTypeBoolean)
432 unsigned TypeId = EPT->getType();
436 return PrimitiveBuiltinElementConstructMap[ EPT->getType() ];
438 if (EPT->getType() == RSExportPrimitiveType::DataTypeUnsigned8)
441 if (EPT->getType() == RSExportPrimitiveType::DataTypeUnsigned565)
443 else if (EPT->getType() == RSExportPrimitiveType::DataTypeUnsigned8)
446 if (EPT->getType() == RSExportPrimitiveType::DataTypeUnsigned5551)
448 else if (EPT->getType() == RSExportPrimitiveType::DataTypeUnsigned4444)
450 else if (EPT->getType() == RSExportPrimitiveType::DataTypeUnsigned8)
456 if (EVT->getType() == RSExportPrimitiveType::DataTypeFloat32) {
463 } else if (EVT->getType() == RSExportPrimitiveType::DataTypeUnsigned8) {
669 genInitExportVariable(C, EV->getType(), EV->getName(), EV->getInit());
769 if (EPT->getType() == RSExportPrimitiveType::DataTypeBoolean) {
862 const RSExportType *ET = EV->getType();
914 Args.push_back(std::make_pair(GetTypeName((*I)->getType()),
966 Args.push_back(std::make_pair(GetTypeName((*I)->getType()),
989 C.indent() << "Type tIn = ain.getType();" << std::endl;
990 C.indent() << "Type tOut = aout.getType();" << std::endl;
1055 std::string TypeName = GetElementJavaTypeName(EPT->getType());
1121 TypeName = GetElementJavaTypeName(EPT->getType());
1148 << ".getType().getElement().isCompatible(__"
1162 slangAssert((EV->getType()->getClass() == RSExportType::ExportClassPrimitive)
1166 static_cast<const RSExportPrimitiveType*>(EV->getType());
1195 const RSExportType *ET = EV->getType();
1237 slangAssert((EV->getType()->getClass() == RSExportType::ExportClassVector) &&
1241 static_cast<const RSExportVectorType*>(EV->getType());
1272 slangAssert((EV->getType()->getClass() == RSExportType::ExportClassMatrix) &&
1276 static_cast<const RSExportMatrixType*>(EV->getType());
1308 slangAssert((EV->getType()->getClass() ==
1313 static_cast<const RSExportConstantArrayType*>(EV->getType());
1344 slangAssert((EV->getType()->getClass() == RSExportType::ExportClassRecord) &&
1348 static_cast<const RSExportRecordType*>(EV->getType());
1483 size_t FieldStoreSize = RSExportType::GetTypeStoreSize(F->getType());
1484 size_t FieldAllocSize = RSExportType::GetTypeAllocSize(F->getType());
1495 genPackVarOfType(C, F->getType(), FieldName.c_str(), FieldPackerName);
1579 "[getType().getX() /* count */];"
1592 ".sizeof * getType().getX()/* count */"
1652 C.indent() << GetTypeName((*FI)->getType()) << " " << (*FI)->getName()
1666 genAllocateVarOfType(C, F->getType(), F->getName());
1817 size_t FieldStoreSize = RSExportType::GetTypeStoreSize(F->getType());
1825 GetTypeName(F->getType()).c_str(), "v",
1843 genPackVarOfType(C, F->getType(), "v", RS_TYPE_ITEM_BUFFER_PACKER_NAME);
1847 genPackVarOfType(C, F->getType(), "v", "fp");
1869 GetTypeName(F->getType()).c_str(),
1874 << GetTypeNullValue(F->getType()) << ";" << std::endl;
1920 ".sizeof * getType().getX()/* count */"
1976 const char *DataTypeName = GetElementDataTypeName(EPT->getType());
2059 int FieldStoreSize = RSExportType::GetTypeStoreSize(F->getType());
2060 int FieldAllocSize = RSExportType::GetTypeAllocSize(F->getType());
2075 if (F->getType()->getClass() != RSExportType::ExportClassRecord) {
2077 F->getType(),
2088 static_cast<const RSExportRecordType*>(F->getType()),