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

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
l2loss_op.cc 38 auto two = XlaHelpers::IntegerLiteral(b, dtype, 2);
matrix_band_part_op.cc 75 XlaHelpers::IntegerLiteral(builder, index_type, m), num_lower);
78 XlaHelpers::IntegerLiteral(builder, index_type, n), num_upper);
relu_op.cc 48 auto six = XlaHelpers::IntegerLiteral(builder, input_type(0), 6);
79 XlaHelpers::IntegerLiteral(b, input_type(0), 6), shape.dim_sizes());
reverse_sequence_op.cc 91 i, XlaHelpers::IntegerLiteral(condition_builder.get(), seq_lens_type,
115 XlaHelpers::IntegerLiteral(body_builder.get(), seq_lens_type,
123 body_builder->Sub(XlaHelpers::IntegerLiteral(
127 XlaHelpers::IntegerLiteral(body_builder.get(), seq_lens_type,
reduction_ops.cc 113 auto divisor = XlaHelpers::IntegerLiteral(builder, input_type(0),
binary_ops.cc 122 b->Mul(b->Pow(lhs, XlaHelpers::IntegerLiteral(b, input_type(0), 3)),
123 b->Div(rhs, XlaHelpers::IntegerLiteral(b, input_type(0), -2)),
softmax_op.cc 207 builder->Lt(indices, XlaHelpers::IntegerLiteral(
  /external/tensorflow/tensorflow/compiler/tf2xla/lib/
util.h 37 xla::ComputationDataHandle IntegerLiteral(xla::ComputationBuilder* builder,
while_loop.cc 92 IntegerLiteral(cond_builder, num_iterations_type, num_iterations));
util.cc 60 xla::ComputationDataHandle IntegerLiteral(xla::ComputationBuilder* builder,
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringSyntaxChecker.cpp 69 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
TestAfterDivZeroChecker.cpp 219 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(B->getRHS());
222 IntLiteral = dyn_cast<IntegerLiteral>(B->getLHS());
IdenticalExprChecker.cpp 463 const IntegerLiteral *IntLit1 = cast<IntegerLiteral>(Stmt1);
464 const IntegerLiteral *IntLit2 = cast<IntegerLiteral>(Stmt2);
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.h 112 IntegerLiteral,
180 return Kind == IntegerLiteral || Kind == MachineBasicBlock ||
MIParser.cpp 464 if (Token.isNot(MIToken::IntegerLiteral))
889 if (Token.isNot(MIToken::IntegerLiteral))
900 if (Token.isNot(MIToken::IntegerLiteral))
    [all...]
  /external/clang/unittests/AST/
PostOrderASTVisitor.cpp 42 bool VisitIntegerLiteral(IntegerLiteral *Lit) {
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_helpers.h 59 static xla::ComputationDataHandle IntegerLiteral(xla::ComputationBuilder* b,
xla_helpers.cc 68 XlaHelpers::IntegerLiteral(builder, output_type, bits_in_type);
136 xla::ComputationDataHandle XlaHelpers::IntegerLiteral(
140 return ::tensorflow::IntegerLiteral(b, type, value);
  /frameworks/compile/slang/
slang_rs_foreach_lowering.cpp 258 clang::IntegerLiteral::Create(mASTCtxt, APIntSlot, IntTy, Loc);
349 clang::IntegerLiteral::Create(mASTCtxt, APIntZero, IntTy, Loc);
367 clang::IntegerLiteral::Create(mASTCtxt, APIntNumOutput, IntTy, Loc);
372 clang::IntegerLiteral::Create(mASTCtxt, APIntNumInputs, IntTy, Loc);
  /frameworks/data-binding/compilerCommon/
BindingExpression.g4 112 : IntegerLiteral
178 IntegerLiteral
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 68 EXPECT_TRUE(Value.getMatcher().hasTypedMatcher<IntegerLiteral>());
  /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
BindingExpressionLexer.java 26 IntegerLiteral=47, FloatingPointLiteral=48, BooleanLiteral=49, CharacterLiteral=50,
39 "T__41", "T__42", "T__43", "THIS", "VoidLiteral", "IntegerLiteral", "DecimalIntegerLiteral",
68 "IntegerLiteral", "FloatingPointLiteral", "BooleanLiteral", "CharacterLiteral",
  /external/clang/lib/Analysis/
BodyFarm.cpp 211 IntegerLiteral *IL =
212 IntegerLiteral::Create(C, llvm::APInt(C.getTypeSize(C.IntTy), (uint64_t) 1),
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 775 if (!isa<IntegerLiteral>(literalE) && !isa<FloatingLiteral>(literalE))
853 if (const IntegerLiteral *IntE = dyn_cast<IntegerLiteral>(literalE))
    [all...]
  /external/clang/lib/AST/
Expr.cpp 708 IntegerLiteral::IntegerLiteral(const ASTContext &C, const llvm::APInt &V,
713 assert(type->isIntegerType() && "Illegal type in IntegerLiteral");
719 IntegerLiteral *
720 IntegerLiteral::Create(const ASTContext &C, const llvm::APInt &V,
722 return new (C) IntegerLiteral(C, V, type, l);
725 IntegerLiteral *
726 IntegerLiteral::Create(const ASTContext &C, EmptyShell Empty) {
727 return new (C) IntegerLiteral(Empty);
    [all...]

Completed in 2003 milliseconds

1 2 3 4 5 6 7 8 91011>>