Searched refs:fUInt_Type (Results 1 – 9 of 9) sorted by relevance
/external/skqp/src/sksl/ |
D | SkSLContext.h | 36 , fUInt_Type(new Type("uint", Type::kUnsigned_NumberKind, 1)) in Context() 37 , fUInt2_Type(new Type("uint2", *fUInt_Type, 2)) in Context() 38 , fUInt3_Type(new Type("uint3", *fUInt_Type, 3)) in Context() 39 , fUInt4_Type(new Type("uint4", *fUInt_Type, 4)) in Context() 155 , fGenUType_Type(new Type("$genUType", { fUInt_Type.get(), fUInt2_Type.get(), 225 const std::unique_ptr<Type> fUInt_Type; variable
|
D | SkSLSPIRVCodeGenerator.cpp | 166 return type == *context.fUInt_Type || type == *context.fUShort_Type || in is_unsigned() 443 return *fContext.fUInt_Type; in getActualType() 455 return fContext.fUInt_Type->toCompound(fContext, type.columns(), type.rows()); in getActualType() 477 } else if (type == *fContext.fUInt_Type) { in getType() 1321 } else if (src == *fContext.fUInt_Type || in writeVectorConstructor() 1339 } else if (src == *fContext.fUInt_Type || in writeVectorConstructor() 1346 } else if (dst == *fContext.fUInt_Type || in writeVectorConstructor() 1355 } else if (src == *fContext.fUInt_Type || in writeVectorConstructor() 1430 } else if (c.fType == *fContext.fUInt_Type || in writeConstructor() 2462 SkASSERT(i.fType == *fContext.fUInt_Type); in writeIntLiteral()
|
D | SkSLGLSLCodeGenerator.cpp | 98 else if (component == *fContext.fUInt_Type || in getTypeName() 999 if (i.fType == *fContext.fUInt_Type) { in writeFunctionCall() 1190 type == *fContext.fUInt_Type) { in writeFunctionCall()
|
D | SkSLIRGenerator.cpp | 468 if (value->fType != *fContext.fUInt_Type && value->fType.kind() != Type::kEnum_Kind) { in convertSwitch() 1691 type == *fContext.fUInt_Type)) { in convertNumberConstructor() 1904 if (converted->fType != *fContext.fUInt_Type) { in convertIndex()
|
D | SkSLMetalCodeGenerator.cpp | 610 if (i.fType == *fContext.fUInt_Type) { in writeIntLiteral()
|
/external/skqp/src/sksl/ir/ |
D | SkSLIndexExpression.h | 58 SkASSERT(fIndex->fType == *context.fInt_Type || fIndex->fType == *context.fUInt_Type); in IndexExpression()
|
D | SkSLSwizzle.h | 65 } else if (base == *context.fUInt_Type) { in get_type()
|
D | SkSLType.cpp | 183 } else if (*this == *context.fUInt_Type) { in toCompound()
|
D | SkSLConstructor.h | 42 } else if (fType == *irGenerator.fContext.fUInt_Type || in constantPropagate()
|