Home | History | Annotate | Download | only in slang

Lines Matching refs:DT

64                             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) {
116 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT));
117 if (DT >= 0 && DT < DataTypeMax) {
118 return RSSetObjectFD[DT];
129 static clang::FunctionDecl *GetRSClearObjectFD(DataType DT) {
130 slangAssert(RSExportPrimitiveType::IsRSObjectType(DT));
131 if (DT >= 0 && DT < DataTypeMax) {
132 return RSClearObjectFD[DT];