Home
last modified time | relevance | path

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

/external/skia/src/sksl/
DSkSLContext.h32 , fUInt_Type(new Type(String("uint"), true, { fFloat_Type.get(), fDouble_Type.get() }))
33 , fUVec2_Type(new Type(String("uvec2"), *fUInt_Type, 2))
34 , fUVec3_Type(new Type(String("uvec3"), *fUInt_Type, 3))
35 , fUVec4_Type(new Type(String("uvec4"), *fUInt_Type, 4))
36 , fInt_Type(new Type(String("int"), true, { fUInt_Type.get(), fFloat_Type.get(),
125 , fGenUType_Type(new Type(String("$genUType"), { fUInt_Type.get(), fUVec2_Type.get(),
174 const std::unique_ptr<Type> fUInt_Type; variable
DSkSLSPIRVCodeGenerator.cpp165 return type == *context.fUInt_Type; in is_unsigned()
1047 } else if (type == *fContext.fUInt_Type) { in getType()
1503 } else if (c.fArguments[0]->fType == *fContext.fUInt_Type) { in writeFloatConstructor()
1521 } else if (c.fArguments[0]->fType == *fContext.fUInt_Type) { in writeIntConstructor()
1531 ASSERT(c.fType == *fContext.fUInt_Type); in writeUIntConstructor()
1542 } else if (c.fArguments[0]->fType == *fContext.fUInt_Type) { in writeUIntConstructor()
1663 } else if (c.fType == *fContext.fUInt_Type) { in writeConstructor()
2557 ASSERT(i.fType == *fContext.fUInt_Type); in writeIntLiteral()
DSkSLIRGenerator.cpp415 if (value->fType != *fContext.fUInt_Type) { in convertSwitch()
431 if (caseValue->fType != *fContext.fUInt_Type) { in convertSwitch()
1479 type == *fContext.fUInt_Type)) { in convertNumberConstructor()
1693 if (converted->fType != *fContext.fUInt_Type) { in convertIndex()
DSkSLGLSLCodeGenerator.cpp475 if (i.fType == *fContext.fUInt_Type) { in writeIntLiteral()
/external/skia/src/sksl/ir/
DSkSLIndexExpression.h51 ASSERT(fIndex->fType == *context.fInt_Type || fIndex->fType == *context.fUInt_Type); in IndexExpression()
DSkSLSwizzle.h47 } else if (base == *context.fUInt_Type) { in get_type()
DSkSLType.cpp120 } else if (*this == *context.fUInt_Type) { in toCompound()
DSkSLConstructor.h42 } else if (fType == *irGenerator.fContext.fUInt_Type) { in constantPropagate()