Searched defs:DT (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.h66 RSExportPrimitiveType::DataType DT,
94 RSExportPrimitiveType::DataType *DT,
97 // Return a zero-initializer expr of the type DT. This processes both
100 RSExportPrimitiveType::DataType DT,
120 RSExportPrimitiveType::DataType DT) {
121 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT));
122 return RSSetObjectFD[(DT - RSExportPrimitiveType::FirstRSObjectType)];
130 RSExportPrimitiveType::DataType DT) {
131 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT));
132 return RSClearObjectFD[(DT
119 GetRSSetObjectFD( RSExportPrimitiveType::DataType DT) argument
129 GetRSClearObjectFD( RSExportPrimitiveType::DataType DT) argument
[all...]
H A Dslang_rs_export_type.cpp731 bool RSExportPrimitiveType::IsRSMatrixType(DataType DT) { argument
732 return ((DT >= FirstRSMatrixType) && (DT <= LastRSMatrixType));
735 bool RSExportPrimitiveType::IsRSObjectType(DataType DT) { argument
736 return ((DT >= FirstRSObjectType) && (DT <= LastRSObjectType));
763 RSExportPrimitiveType::DataType DT = GetRSSpecificType(FT); local
764 if (IsRSObjectType(DT)) {
768 switch (DT) {
859 DataType DT local
1051 RSExportPrimitiveType::DataType DT = local
[all...]
H A Dslang_rs_export_type.h238 DataType DT,
242 mType(DT),
266 static bool IsRSMatrixType(DataType DT);
267 static bool IsRSObjectType(DataType DT);
328 DataType DT,
333 DT, DK, Normalized),
234 RSExportPrimitiveType(RSContext *Context, ExportClass Class, const llvm::StringRef &Name, DataType DT, DataKind DK, bool Normalized) argument
326 RSExportVectorType(RSContext *Context, const llvm::StringRef &Name, DataType DT, DataKind DK, bool Normalized, unsigned NumElement) argument
H A Dslang_rs_object_ref_count.cpp81 RSExportPrimitiveType::DataType DT = local
83 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT)
86 RSObjectFD[(DT - RSExportPrimitiveType::FirstRSObjectType)] = FD;
575 RSExportPrimitiveType::DataType DT = local
582 } else if (DT == RSExportPrimitiveType::DataTypeUnknown) {
619 RSExportPrimitiveType::DataType DT = local
621 if (DT != RSExportPrimitiveType::DataTypeUnknown) {
622 return (RSExportPrimitiveType::IsRSObjectType(DT) ? 1 : 0);
954 RSExportPrimitiveType::DataType DT = local
962 } else if (DT
1060 RSExportPrimitiveType::DataType DT = local
1130 AppendRSObjectInit( clang::VarDecl *VD, clang::DeclStmt *DS, RSExportPrimitiveType::DataType DT, clang::Expr *InitExpr) argument
1271 RSExportPrimitiveType::DataType DT = local
1285 InitializeRSObject(clang::VarDecl *VD, RSExportPrimitiveType::DataType *DT, clang::Expr **InitExpr) argument
1334 CreateZeroInitializerForRSSpecificType( RSExportPrimitiveType::DataType DT, clang::ASTContext &C, const clang::SourceLocation &Loc) argument
1441 RSExportPrimitiveType::DataType DT = local
[all...]
H A Dslang_rs_reflection.cpp502 static const char *GetElementDataTypeName(RSExportPrimitiveType::DataType DT) { argument
555 if (static_cast<unsigned>(DT) <
557 return ElementDataTypeNameMap[ DT ];
562 static const char *GetElementJavaTypeName(RSExportPrimitiveType::DataType DT) { argument
599 if (static_cast<unsigned>(DT) <
601 return ElementJavaTypeNameMap[DT];

Completed in 69 milliseconds