/external/skqp/src/sksl/ir/ |
D | SkSLBoolLiteral.h | 19 struct BoolLiteral : public Expression { struct 20 BoolLiteral(const Context& context, int offset, bool value) in BoolLiteral() function 37 BoolLiteral& b = (BoolLiteral&) other; in compareConstant() argument
|
D | SkSLVariableReference.h | 99 return std::unique_ptr<Expression>(new BoolLiteral(irGenerator.fContext, in copy_constant() 101 ((BoolLiteral*) expr)->fValue)); in copy_constant()
|
D | SkSLProgram.h | 45 return std::unique_ptr<Expression>(new BoolLiteral(context, in literal()
|
/external/skia/src/sksl/ir/ |
D | SkSLBoolLiteral.h | 19 struct BoolLiteral : public Expression { struct 20 BoolLiteral(const Context& context, int offset, bool value) in BoolLiteral() argument 37 BoolLiteral& b = (BoolLiteral&) other; in compareConstant() argument
|
D | SkSLVariableReference.h | 102 return std::unique_ptr<Expression>(new BoolLiteral(irGenerator.fContext, in copy_constant() 104 ((BoolLiteral*) expr)->fValue)); in copy_constant()
|
D | SkSLProgram.h | 45 return std::unique_ptr<Expression>(new BoolLiteral(context, in literal()
|
/external/deqp/framework/randomshaders/ |
D | rsgExpression.hpp | 142 class BoolLiteral : public Expression class 145 BoolLiteral (GeneratorState& state, ConstValueRangeAccess valueRange); 146 virtual ~BoolLiteral (void) {} in ~BoolLiteral()
|
D | rsgExpression.cpp | 285 { getWeight<BoolLiteral>, create<BoolLiteral> }, 471 BoolLiteral::BoolLiteral (GeneratorState& state, ConstValueRangeAccess valueRange) in BoolLiteral() function in rsg::BoolLiteral 490 float BoolLiteral::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() 502 void BoolLiteral::tokenize (GeneratorState& state, TokenStream& str) const in tokenize()
|
/external/skia/src/sksl/ |
D | SkSLIRGenerator.cpp | 356 if (((BoolLiteral&) *test).fValue) { in convertIf() 944 return std::unique_ptr<Expression>(new BoolLiteral(fContext, expr.fOffset, in convertExpression() 1249 bool leftVal = ((BoolLiteral&) left).fValue; in constantFold() 1250 bool rightVal = ((BoolLiteral&) right).fValue; in constantFold() 1258 return std::unique_ptr<Expression>(new BoolLiteral(fContext, left.fOffset, result)); in constantFold() 1334 return std::unique_ptr<Expression>(new BoolLiteral(fContext, -1, in constantFold() 1337 return std::unique_ptr<Expression>(new BoolLiteral(fContext, -1, in constantFold() 1351 return std::unique_ptr<Expression>(new BoolLiteral(fContext, -1, in constantFold() 1354 return std::unique_ptr<Expression>(new BoolLiteral(fContext, -1, in constantFold() 1453 if (((BoolLiteral&) *test).fValue) { in convertTernaryExpression() [all …]
|
D | SkSLMetalCodeGenerator.h | 163 void writeBoolLiteral(const BoolLiteral& b);
|
D | SkSLGLSLCodeGenerator.h | 167 void writeBoolLiteral(const BoolLiteral& b);
|
D | SkSLSPIRVCodeGenerator.h | 238 SpvId writeBoolLiteral(const BoolLiteral& b);
|
D | SkSLMetalCodeGenerator.cpp | 92 this->writeBoolLiteral((BoolLiteral&) expr); in writeExpression() 372 void MetalCodeGenerator::writeBoolLiteral(const BoolLiteral& b) { in writeBoolLiteral()
|
D | SkSLGLSLCodeGenerator.cpp | 183 this->writeBoolLiteral((BoolLiteral&) expr); in writeExpression() 848 void GLSLCodeGenerator::writeBoolLiteral(const BoolLiteral& b) { in writeBoolLiteral()
|
D | SkSLCompiler.cpp | 677 if (((BoolLiteral&) *t->fTest).fValue) { in simplifyExpression() 942 if (((BoolLiteral&) *i.fTest).fValue) { in simplifyStatement()
|
D | SkSLSPIRVCodeGenerator.cpp | 633 return this->writeBoolLiteral((BoolLiteral&) expr); in writeExpression() 2126 BoolLiteral falseLiteral(fContext, -1, false); in writeLogicalAnd() 2147 BoolLiteral trueLiteral(fContext, -1, true); in writeLogicalOr() 2285 SpvId SPIRVCodeGenerator::writeBoolLiteral(const BoolLiteral& b) { in writeBoolLiteral()
|
/external/skqp/src/sksl/ |
D | SkSLIRGenerator.cpp | 357 if (((BoolLiteral&) *test).fValue) { in convertIf() 943 return std::unique_ptr<Expression>(new BoolLiteral(fContext, expr.fOffset, in convertExpression() 1248 bool leftVal = ((BoolLiteral&) left).fValue; in constantFold() 1249 bool rightVal = ((BoolLiteral&) right).fValue; in constantFold() 1257 return std::unique_ptr<Expression>(new BoolLiteral(fContext, left.fOffset, result)); in constantFold() 1333 return std::unique_ptr<Expression>(new BoolLiteral(fContext, -1, in constantFold() 1336 return std::unique_ptr<Expression>(new BoolLiteral(fContext, -1, in constantFold() 1350 return std::unique_ptr<Expression>(new BoolLiteral(fContext, -1, in constantFold() 1353 return std::unique_ptr<Expression>(new BoolLiteral(fContext, -1, in constantFold() 1452 if (((BoolLiteral&) *test).fValue) { in convertTernaryExpression() [all …]
|
D | SkSLMetalCodeGenerator.h | 163 void writeBoolLiteral(const BoolLiteral& b);
|
D | SkSLGLSLCodeGenerator.h | 167 void writeBoolLiteral(const BoolLiteral& b);
|
D | SkSLSPIRVCodeGenerator.h | 238 SpvId writeBoolLiteral(const BoolLiteral& b);
|
D | SkSLMetalCodeGenerator.cpp | 92 this->writeBoolLiteral((BoolLiteral&) expr); in writeExpression() 372 void MetalCodeGenerator::writeBoolLiteral(const BoolLiteral& b) { in writeBoolLiteral()
|
D | SkSLGLSLCodeGenerator.cpp | 183 this->writeBoolLiteral((BoolLiteral&) expr); in writeExpression() 838 void GLSLCodeGenerator::writeBoolLiteral(const BoolLiteral& b) { in writeBoolLiteral()
|
D | SkSLCompiler.cpp | 677 if (((BoolLiteral&) *t->fTest).fValue) { in simplifyExpression() 942 if (((BoolLiteral&) *i.fTest).fValue) { in simplifyStatement()
|
D | SkSLSPIRVCodeGenerator.cpp | 633 return this->writeBoolLiteral((BoolLiteral&) expr); in writeExpression() 2118 BoolLiteral falseLiteral(fContext, -1, false); in writeLogicalAnd() 2139 BoolLiteral trueLiteral(fContext, -1, true); in writeLogicalOr() 2277 SpvId SPIRVCodeGenerator::writeBoolLiteral(const BoolLiteral& b) { in writeBoolLiteral()
|