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

/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.h64 DataType DT,
92 DataType *DT,
95 // Return a zero-initializer expr of the type DT. This processes both
98 DataType DT,
115 static clang::FunctionDecl *GetRSSetObjectFD(DataType DT) { argument
116 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT));
117 if (DT >= 0 && DT < DataTypeMax) {
118 return RSSetObjectFD[DT];
129 static clang::FunctionDecl *GetRSClearObjectFD(DataType DT) { argument
[all...]
H A Dslang_rs_export_type.cpp944 bool RSExportPrimitiveType::IsRSMatrixType(DataType DT) { argument
945 if (DT < 0 || DT >= DataTypeMax) {
948 return gReflectionTypes[DT].category == MatrixDataType;
951 bool RSExportPrimitiveType::IsRSObjectType(DataType DT) { argument
952 if (DT < 0 || DT >= DataTypeMax) {
955 return gReflectionTypes[DT].category == ObjectDataType;
989 DataType DT = GetRSSpecificType(FT); local
990 if (IsRSObjectType(DT)) {
1068 DataType DT = GetDataType(Context, T); local
1161 getRSReflectionType(DataType DT) argument
1248 DataType DT = RSExportPrimitiveType::GetDataType(Context, ElementType); local
[all...]
H A Dslang_rs_export_type.h308 DataType DT,
311 mType(DT),
331 static bool IsRSMatrixType(DataType DT);
332 static bool IsRSObjectType(DataType DT);
350 static RSReflectionType *getRSReflectionType(DataType DT);
402 DataType DT,
406 DT, Normalized),
304 RSExportPrimitiveType(RSContext *Context, ExportClass Class, const llvm::StringRef &Name, DataType DT, bool Normalized) argument
400 RSExportVectorType(RSContext *Context, const llvm::StringRef &Name, DataType DT, bool Normalized, unsigned NumElement) argument
H A Dslang_rs_object_ref_count.cpp80 DataType DT = RSExportPrimitiveType::GetRSSpecificType(RST.getTypePtr()); local
81 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT)
84 if (DT >= 0 && DT < DataTypeMax) {
85 RSObjectFD[DT] = FD;
565 DataType DT = RSExportPrimitiveType::GetRSSpecificType(BaseType); local
571 } else if (DT == DataTypeUnknown) {
608 DataType DT = RSExportPrimitiveType::GetRSSpecificType(T); local
609 if (DT != DataTypeUnknown) {
610 return (RSExportPrimitiveType::IsRSObjectType(DT)
1053 DataType DT = RSExportPrimitiveType::GetRSSpecificType(FT); local
1122 AppendRSObjectInit( clang::VarDecl *VD, clang::DeclStmt *DS, DataType DT, clang::Expr *InitExpr) argument
1267 DataType DT = RSExportPrimitiveType::GetRSSpecificType(T); local
1280 InitializeRSObject(clang::VarDecl *VD, DataType *DT, clang::Expr **InitExpr) argument
1329 CreateZeroInitializerForRSSpecificType( DataType DT, clang::ASTContext &C, const clang::SourceLocation &Loc) argument
1443 DataType DT = DataTypeUnknown; local
[all...]

Completed in 110 milliseconds