Home
last modified time | relevance | path

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

/third_party/flutter/skia/src/sksl/
DSkSLContext.h39 , fUInt_Type(new Type("uint", Type::kUnsigned_NumberKind, 2, true)) in Context()
40 , fUInt2_Type(new Type("uint2", *fUInt_Type, 2)) in Context()
41 , fUInt3_Type(new Type("uint3", *fUInt_Type, 3)) in Context()
42 , fUInt4_Type(new Type("uint4", *fUInt_Type, 4)) in Context()
165 , fGenUType_Type(new Type("$genUType", { fUInt_Type.get(), fUInt2_Type.get(),
238 const std::unique_ptr<Type> fUInt_Type; variable
DSkSLSPIRVCodeGenerator.cpp171 return type == *context.fUInt_Type || type == *context.fUShort_Type || in is_unsigned()
454 return *fContext.fUInt_Type; in getActualType()
466 return fContext.fUInt_Type->toCompound(fContext, type.columns(), type.rows()); in getActualType()
489 } else if (type == *fContext.fUInt_Type || type == *fContext.fUShort_Type) { in getType()
1388 } else if (src == *fContext.fUInt_Type || in writeVectorConstructor()
1406 } else if (src == *fContext.fUInt_Type || in writeVectorConstructor()
1413 } else if (dst == *fContext.fUInt_Type || in writeVectorConstructor()
1422 } else if (src == *fContext.fUInt_Type || in writeVectorConstructor()
1497 } else if (c.fType == *fContext.fUInt_Type || in writeConstructor()
2479 } else if (i.fType == *fContext.fUInt_Type) { in writeIntLiteral()
DSkSLGLSLCodeGenerator.cpp1022 if (i.fType == *fContext.fUInt_Type) { in writeFunctionCall()
1224 type == *fContext.fUInt_Type) { in writeFunctionCall()
DSkSLIRGenerator.cpp512 if (value->fType != *fContext.fUInt_Type && value->fType.kind() != Type::kEnum_Kind) { in convertSwitch()
1914 type == *fContext.fUInt_Type)) { in convertNumberConstructor()
2128 if (converted->fType != *fContext.fUInt_Type) { in convertIndex()
DSkSLMetalCodeGenerator.cpp762 if (i.fType == *fContext.fUInt_Type) { in writeIntLiteral()
/third_party/flutter/skia/src/sksl/ir/
DSkSLIndexExpression.h58 SkASSERT(fIndex->fType == *context.fInt_Type || fIndex->fType == *context.fUInt_Type); in IndexExpression()
DSkSLType.cpp184 } else if (*this == *context.fUInt_Type) { in toCompound()
DSkSLSwizzle.h71 } else if (base == *context.fUInt_Type) { in get_type()