Home
last modified time | relevance | path

Searched refs:fUInt_Type (Results 1 – 9 of 9) sorted by relevance

/external/skqp/src/sksl/
DSkSLContext.h36 , 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
DSkSLSPIRVCodeGenerator.cpp166 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()
DSkSLGLSLCodeGenerator.cpp98 else if (component == *fContext.fUInt_Type || in getTypeName()
999 if (i.fType == *fContext.fUInt_Type) { in writeFunctionCall()
1190 type == *fContext.fUInt_Type) { in writeFunctionCall()
DSkSLIRGenerator.cpp468 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()
DSkSLMetalCodeGenerator.cpp610 if (i.fType == *fContext.fUInt_Type) { in writeIntLiteral()
/external/skqp/src/sksl/ir/
DSkSLIndexExpression.h58 SkASSERT(fIndex->fType == *context.fInt_Type || fIndex->fType == *context.fUInt_Type); in IndexExpression()
DSkSLSwizzle.h65 } else if (base == *context.fUInt_Type) { in get_type()
DSkSLType.cpp183 } else if (*this == *context.fUInt_Type) { in toCompound()
DSkSLConstructor.h42 } else if (fType == *irGenerator.fContext.fUInt_Type || in constantPropagate()