HomeSort by relevance Sort by last modified time
    Searched refs:IntLiteral (Results 1 - 25 of 49) sorted by null

1 2

  /external/skia/src/sksl/ir/
SkSLIntLiteral.h 19 struct IntLiteral : public Expression {
22 IntLiteral(const Context& context, int offset, int64_t value, const Type* type = nullptr)
39 IntLiteral& i = (IntLiteral&) other;
SkSLVariableReference.h 93 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext,
95 ((IntLiteral*) expr)->fValue));
SkSLConstructor.h 38 int64_t intValue = ((IntLiteral&) *fArguments[0]).fValue;
45 int64_t intValue = ((IntLiteral&) *fArguments[0]).fValue;
46 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext,
101 const IntLiteral izero(context, -1, 0);
SkSLProgram.h 49 return std::unique_ptr<Expression>(new IntLiteral(context,
SkSLSwizzle.h 100 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext,
  /external/skqp/src/sksl/ir/
SkSLIntLiteral.h 19 struct IntLiteral : public Expression {
22 IntLiteral(const Context& context, int offset, int64_t value, const Type* type = nullptr)
39 IntLiteral& i = (IntLiteral&) other;
SkSLVariableReference.h 90 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext,
92 ((IntLiteral*) expr)->fValue));
SkSLConstructor.h 38 int64_t intValue = ((IntLiteral&) *fArguments[0]).fValue;
45 int64_t intValue = ((IntLiteral&) *fArguments[0]).fValue;
46 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext,
101 const IntLiteral izero(context, -1, 0);
SkSLProgram.h 49 return std::unique_ptr<Expression>(new IntLiteral(context,
SkSLSwizzle.h 100 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext,
  /external/clang/lib/StaticAnalyzer/Checkers/
TestAfterDivZeroChecker.cpp 219 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(B->getRHS());
221 if (!IntLiteral) {
222 IntLiteral = dyn_cast<IntegerLiteral>(B->getLHS());
226 if (!IntLiteral || IntLiteral->getValue() != 0)
  /external/skia/src/sksl/
SkSLCPPCodeGenerator.h 42 void writeIntLiteral(const IntLiteral& i) override;
SkSLGLSLCodeGenerator.h 169 virtual void writeIntLiteral(const IntLiteral& i);
SkSLMetalCodeGenerator.h 165 void writeIntLiteral(const IntLiteral& i);
SkSLIRGenerator.cpp 257 count = ((IntLiteral&) *size).fValue;
567 std::unique_ptr<IntLiteral>(new IntLiteral(fContext, -1, fInvocations)),
592 std::unique_ptr<IntLiteral>(new IntLiteral(fContext, -1, 0)),
    [all...]
SkSLCPPCodeGenerator.cpp 92 int64_t index = ((IntLiteral&) *i.fIndex).fValue;
109 int64_t index = ((IntLiteral&) *i.fIndex).fValue;
213 void CPPCodeGenerator::writeIntLiteral(const IntLiteral& i) {
    [all...]
SkSLSPIRVCodeGenerator.h 240 SpvId writeIntLiteral(const IntLiteral& i);
  /external/skqp/src/sksl/
SkSLCPPCodeGenerator.h 42 void writeIntLiteral(const IntLiteral& i) override;
SkSLGLSLCodeGenerator.h 169 virtual void writeIntLiteral(const IntLiteral& i);
SkSLMetalCodeGenerator.h 165 void writeIntLiteral(const IntLiteral& i);
SkSLIRGenerator.cpp 261 count = ((IntLiteral&) *size).fValue;
568 std::unique_ptr<IntLiteral>(new IntLiteral(fContext, -1, fInvocations)),
593 std::unique_ptr<IntLiteral>(new IntLiteral(fContext, -1, 0)),
    [all...]
SkSLCPPCodeGenerator.cpp 92 int64_t index = ((IntLiteral&) *i.fIndex).fValue;
109 int64_t index = ((IntLiteral&) *i.fIndex).fValue;
213 void CPPCodeGenerator::writeIntLiteral(const IntLiteral& i) {
    [all...]
  /external/deqp/framework/randomshaders/
rsgExpression.hpp 124 class IntLiteral : public Expression
127 IntLiteral (GeneratorState& state, ConstValueRangeAccess valueRange);
128 virtual ~IntLiteral (void) {}
rsgExpression.cpp 284 { getWeight<IntLiteral>, create<IntLiteral> },
417 IntLiteral::IntLiteral (GeneratorState& state, ConstValueRangeAccess valueRange)
442 float IntLiteral::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange)
465 void IntLiteral::tokenize (GeneratorState& state, TokenStream& str) const
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 648 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
651 if (!IntLiteral) {
652 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
657 if (!IntLiteral || !BoolExpr->isKnownToHaveBooleanValue())
660 llvm::APInt IntValue = IntLiteral->getValue();
664 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() ||
687 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
690 if (!IntLiteral) {
691 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
695 if (!IntLiteral)
    [all...]

Completed in 1354 milliseconds

1 2