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

/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.h72 DataType DT,
132 DataType *DT,
173 static clang::FunctionDecl *GetRSSetObjectFD(DataType DT) { argument
174 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT));
175 if (DT >= 0 && DT < DataTypeMax) {
176 return RSSetObjectFD[DT];
187 static clang::FunctionDecl *GetRSClearObjectFD(DataType DT) { argument
188 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT));
189 if (DT >
[all...]
H A Dslang_rs_object_ref_count.cpp79 DataType DT = RSExportPrimitiveType::GetRSSpecificType(RST.getTypePtr()); local
80 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT)
83 if (DT >= 0 && DT < DataTypeMax) {
84 RSObjectFD[DT] = FD;
477 DataType DT = RSExportPrimitiveType::GetRSSpecificType(BaseType); local
483 } else if (DT == DataTypeUnknown) {
512 DataType DT = RSExportPrimitiveType::GetRSSpecificType(T); local
513 if (DT != DataTypeUnknown) {
514 return (RSExportPrimitiveType::IsRSObjectType(DT)
972 DataType DT = RSExportPrimitiveType::GetRSSpecificType(FT); local
1073 AppendRSObjectInit( clang::VarDecl *VD, clang::DeclStmt *DS, DataType DT, clang::Expr *InitExpr) argument
1283 DataType DT = RSExportPrimitiveType::GetRSSpecificType(T); local
1296 InitializeRSObject(clang::VarDecl *VD, DataType *DT, clang::Expr **InitExpr) argument
1524 DataType DT = DataTypeUnknown; local
[all...]
H A Dslang_rs_export_type.h392 DataType DT,
395 mType(DT),
415 static bool IsRSMatrixType(DataType DT);
416 static bool IsRSObjectType(DataType DT);
437 static RSReflectionType *getRSReflectionType(DataType DT);
490 DataType DT,
494 DT, Normalized),
388 RSExportPrimitiveType(RSContext *Context, ExportClass Class, const llvm::StringRef &Name, DataType DT, bool Normalized) argument
488 RSExportVectorType(RSContext *Context, const llvm::StringRef &Name, DataType DT, bool Normalized, unsigned NumElement) argument
H A Dslang_rs_export_type.cpp1017 bool RSExportPrimitiveType::IsRSMatrixType(DataType DT) { argument
1018 if (DT < 0 || DT >= DataTypeMax) {
1021 return gReflectionTypes[DT].category == MatrixDataType;
1024 bool RSExportPrimitiveType::IsRSObjectType(DataType DT) { argument
1025 if (DT < 0 || DT >= DataTypeMax) {
1028 return gReflectionTypes[DT].category == ObjectDataType;
1066 DataType DT = GetRSSpecificType(FT); local
1067 if (IsRSObjectType(DT)) {
1142 DataType DT = GetDataType(Context, T); local
1241 getRSReflectionType(DataType DT) argument
1330 DataType DT = RSExportPrimitiveType::GetDataType(Context, ElementType); local
[all...]
/frameworks/compile/libbcc/lib/
H A DRSInvokeHelperPass.cpp121 bool insertSetObjectHelper(llvm::CallInst *Call, llvm::Value *V, enum RsDataType DT) { argument
124 switch (DT) {
202 enum RsDataType DT = RS_TYPE_NONE; variable in typeref:enum:__anon1208::RSInvokeHelperPass::RsDataType
204 DT = getRsDataTypeForType(T->getPointerElementType());
206 if (DT != RS_TYPE_NONE) {
208 changed |= insertSetObjectHelper(call, V, DT);
H A DRSAddDebugInfoPass.cpp151 llvm::DIDerivedType *DT = nullptr; local
152 DT = llvm::cast<llvm::DIDerivedType>(kernelPrototypeVarMD->getType());
153 DT = llvm::cast<llvm::DIDerivedType>(DT->getBaseType());
154 llvm::DISubroutineType *ST = llvm::cast<llvm::DISubroutineType>(DT->getBaseType());
/frameworks/base/services/core/jni/BroadcastRadio/
H A DBroadcastRadioService.cpp90 Class::DT,
/frameworks/rs/tests/java_api/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/rsov/driver/
H A DrsovRuntimeStubs.cpp518 #define ELEMENT_AT(T, DT, VS) \
521 void *r = ElementAt((Allocation *)a.p, DT, VS, x, y, z); \
536 void *r = ElementAt((Allocation *)a.p, DT, VS, x, y, z); \
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp544 #define ELEMENT_AT(T, DT, VS) \
546 void *r = ElementAt((Allocation *)a.p, DT, VS, x, y, z); \
557 void *r = ElementAt((Allocation *)a.p, DT, VS, x, y, z); \

Completed in 155 milliseconds