Searched refs:DT (Results 1 - 8 of 8) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.h71 DataType DT,
131 DataType *DT,
167 static clang::FunctionDecl *GetRSSetObjectFD(DataType DT) { argument
168 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT));
169 if (DT >= 0 && DT < DataTypeMax) {
170 return RSSetObjectFD[DT];
181 static clang::FunctionDecl *GetRSClearObjectFD(DataType DT) { argument
182 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT));
183 if (DT >
[all...]
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;
478 DataType DT = RSExportPrimitiveType::GetRSSpecificType(BaseType); local
484 } else if (DT == DataTypeUnknown) {
513 DataType DT = RSExportPrimitiveType::GetRSSpecificType(T); local
514 if (DT != DataTypeUnknown) {
515 return (RSExportPrimitiveType::IsRSObjectType(DT)
967 DataType DT = RSExportPrimitiveType::GetRSSpecificType(FT); local
1068 AppendRSObjectInit( clang::VarDecl *VD, clang::DeclStmt *DS, DataType DT, clang::Expr *InitExpr) argument
1260 DataType DT = RSExportPrimitiveType::GetRSSpecificType(T); local
1273 InitializeRSObject(clang::VarDecl *VD, DataType *DT, clang::Expr **InitExpr) argument
1411 DataType DT = DataTypeUnknown; local
[all...]
H A Dslang_rs_export_type.h338 DataType DT,
341 mType(DT),
361 static bool IsRSMatrixType(DataType DT);
362 static bool IsRSObjectType(DataType DT);
383 static RSReflectionType *getRSReflectionType(DataType DT);
436 DataType DT,
440 DT, Normalized),
334 RSExportPrimitiveType(RSContext *Context, ExportClass Class, const llvm::StringRef &Name, DataType DT, bool Normalized) argument
434 RSExportVectorType(RSContext *Context, const llvm::StringRef &Name, DataType DT, bool Normalized, unsigned NumElement) argument
H A Dslang_rs_export_type.cpp1014 bool RSExportPrimitiveType::IsRSMatrixType(DataType DT) { argument
1015 if (DT < 0 || DT >= DataTypeMax) {
1018 return gReflectionTypes[DT].category == MatrixDataType;
1021 bool RSExportPrimitiveType::IsRSObjectType(DataType DT) { argument
1022 if (DT < 0 || DT >= DataTypeMax) {
1025 return gReflectionTypes[DT].category == ObjectDataType;
1059 DataType DT = GetRSSpecificType(FT); local
1060 if (IsRSObjectType(DT)) {
1138 DataType DT = GetDataType(Context, T); local
1236 getRSReflectionType(DataType DT) argument
1324 DataType DT = RSExportPrimitiveType::GetDataType(Context, ElementType); local
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInvokeHelperPass.cpp122 bool insertSetObjectHelper(llvm::CallInst *Call, llvm::Value *V, enum RsDataType DT) { argument
125 switch (DT) {
203 enum RsDataType DT = RS_TYPE_NONE; variable in typeref:enum:__anon1179::RSInvokeHelperPass::RsDataType
205 DT = getRsDataTypeForType(T->getPointerElementType());
207 if (DT != RS_TYPE_NONE) {
209 changed |= insertSetObjectHelper(call, V, DT);
H A DRSAddDebugInfoPass.cpp130 llvm::DIDerivedType *DT = nullptr; local
131 DT = llvm::cast<llvm::DIDerivedType>(kernelPrototypeVarMD->getType());
132 DT = llvm::cast<llvm::DIDerivedType>(DT->getBaseType());
133 llvm::DISubroutineType *ST = llvm::cast<llvm::DISubroutineType>(DT->getBaseType());
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java88 static final short DT = vr("DT"); field in class:LoaderDicom
108 AE, AS, CS, DA, DS, DT, IS, LO, LT, PN, SH, ST, TM, UT
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp526 #define ELEMENT_AT(T, DT, VS) \
528 void *r = ElementAt((Allocation *)a.p, DT, VS, x, y, z); \
539 void *r = ElementAt((Allocation *)a.p, DT, VS, x, y, z); \

Completed in 389 milliseconds