HomeSort by relevance Sort by last modified time
    Searched refs:BinOp (Results 76 - 100 of 241) sorted by null

1 2 34 5 6 7 8 910

  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
InstrTypes.h 516 static const Value *getNegArgument(const Value *BinOp);
517 static Value *getNegArgument( Value *BinOp);
518 static const Value *getFNegArgument(const Value *BinOp);
519 static Value *getFNegArgument( Value *BinOp);
520 static const Value *getNotArgument(const Value *BinOp);
521 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
InstrTypes.h 516 static const Value *getNegArgument(const Value *BinOp);
517 static Value *getNegArgument( Value *BinOp);
518 static const Value *getFNegArgument(const Value *BinOp);
519 static Value *getFNegArgument( Value *BinOp);
520 static const Value *getNotArgument(const Value *BinOp);
521 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
InstrTypes.h 516 static const Value *getNegArgument(const Value *BinOp);
517 static Value *getNegArgument( Value *BinOp);
518 static const Value *getFNegArgument(const Value *BinOp);
519 static Value *getFNegArgument( Value *BinOp);
520 static const Value *getNotArgument(const Value *BinOp);
521 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
InstrTypes.h 534 static const Value *getNegArgument(const Value *BinOp);
535 static Value *getNegArgument( Value *BinOp);
536 static const Value *getFNegArgument(const Value *BinOp);
537 static Value *getFNegArgument( Value *BinOp);
538 static const Value *getNotArgument(const Value *BinOp);
539 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/IR/
InstrTypes.h 516 static const Value *getNegArgument(const Value *BinOp);
517 static Value *getNegArgument( Value *BinOp);
518 static const Value *getFNegArgument(const Value *BinOp);
519 static Value *getFNegArgument( Value *BinOp);
520 static const Value *getNotArgument(const Value *BinOp);
521 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/IR/
InstrTypes.h 516 static const Value *getNegArgument(const Value *BinOp);
517 static Value *getNegArgument( Value *BinOp);
518 static const Value *getFNegArgument(const Value *BinOp);
519 static Value *getFNegArgument( Value *BinOp);
520 static const Value *getNotArgument(const Value *BinOp);
521 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/IR/
InstrTypes.h 516 static const Value *getNegArgument(const Value *BinOp);
517 static Value *getNegArgument( Value *BinOp);
518 static const Value *getFNegArgument(const Value *BinOp);
519 static Value *getFNegArgument( Value *BinOp);
520 static const Value *getNotArgument(const Value *BinOp);
521 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
InstrTypes.h 516 static const Value *getNegArgument(const Value *BinOp);
517 static Value *getNegArgument( Value *BinOp);
518 static const Value *getFNegArgument(const Value *BinOp);
519 static Value *getFNegArgument( Value *BinOp);
520 static const Value *getNotArgument(const Value *BinOp);
521 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
InstrTypes.h 516 static const Value *getNegArgument(const Value *BinOp);
517 static Value *getNegArgument( Value *BinOp);
518 static const Value *getFNegArgument(const Value *BinOp);
519 static Value *getFNegArgument( Value *BinOp);
520 static const Value *getNotArgument(const Value *BinOp);
521 static Value *getNotArgument( Value *BinOp);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
InstrTypes.h 516 static const Value *getNegArgument(const Value *BinOp);
517 static Value *getNegArgument( Value *BinOp);
518 static const Value *getFNegArgument(const Value *BinOp);
519 static Value *getFNegArgument( Value *BinOp);
520 static const Value *getNotArgument(const Value *BinOp);
521 static Value *getNotArgument( Value *BinOp);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 193 // Make sure it's a declared binop.
290 // If this is a binop, find its precedence.
294 // If this is a binop that binds at least as tightly as the current binop,
299 // Okay, we know this is a binop.
300 int BinOp = CurTok;
301 getNextToken(); // eat binop
308 // If BinOp binds less tightly with RHS than the operator after RHS, let
319 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 202 // Make sure it's a declared binop.
299 // If this is a binop, find its precedence.
303 // If this is a binop that binds at least as tightly as the current binop,
308 // Okay, we know this is a binop.
309 int BinOp = CurTok;
310 getNextToken(); // eat binop
317 // If BinOp binds less tightly with RHS than the operator after RHS, let
328 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 53 (* If this is a binop, find its precedence. *)
57 (* If this is a binop that binds at least as tightly as the current binop,
60 (* Eat the binop. *)
66 (* Okay, we know this is a binop. *)
70 (* If BinOp binds less tightly with rhs than the operator after
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 53 (* If this is a binop, find its precedence. *)
57 (* If this is a binop that binds at least as tightly as the current binop,
60 (* Eat the binop. *)
66 (* Okay, we know this is a binop. *)
70 (* If BinOp binds less tightly with rhs than the operator after
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 53 (* If this is a binop, find its precedence. *)
57 (* If this is a binop that binds at least as tightly as the current binop,
60 (* Eat the binop. *)
66 (* Okay, we know this is a binop. *)
70 (* If BinOp binds less tightly with rhs than the operator after
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 178 // Make sure it's a declared binop.
260 // If this is a binop, find its precedence.
264 // If this is a binop that binds at least as tightly as the current binop,
269 // Okay, we know this is a binop.
270 int BinOp = CurTok;
271 getNextToken(); // eat binop
277 // If BinOp binds less tightly with RHS than the operator after RHS, let
286 LHS = new BinaryExprAST(BinOp, LHS, RHS);
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 53 (* If this is a binop, find its precedence. *)
57 (* If this is a binop that binds at least as tightly as the current binop,
60 (* Eat the binop. *)
66 (* Okay, we know this is a binop. *)
70 (* If BinOp binds less tightly with rhs than the operator after
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 53 (* If this is a binop, find its precedence. *)
57 (* If this is a binop that binds at least as tightly as the current binop,
60 (* Eat the binop. *)
66 (* Okay, we know this is a binop. *)
70 (* If BinOp binds less tightly with rhs than the operator after
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 53 (* If this is a binop, find its precedence. *)
57 (* If this is a binop that binds at least as tightly as the current binop,
60 (* Eat the binop. *)
66 (* Okay, we know this is a binop. *)
70 (* If BinOp binds less tightly with rhs than the operator after
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 48 BinaryOperator::Opcode Opcode; // Opcode of BinOp to perform
50 const Expr *E; // Entire expr, for error unsupported. May not be binop.
    [all...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 502 template<typename DerType, typename BinOp>
503 struct ScalarBinaryOpTraits<AutoDiffScalar<DerType>,typename DerType::Scalar,BinOp>
508 template<typename DerType, typename BinOp>
509 struct ScalarBinaryOpTraits<typename DerType::Scalar,AutoDiffScalar<DerType>, BinOp>
517 // template<typename DerType, typename BinOp>
518 // struct ScalarBinaryOpTraits<AutoDiffScalar<DerType>,AutoDiffScalar<DerType>, BinOp>
524 // template<typename DerType1,typename DerType2, typename BinOp>
525 // struct ScalarBinaryOpTraits<AutoDiffScalar<DerType1>,AutoDiffScalar<DerType2>, BinOp>
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 643 BinOpToken BinOp;
644 std::tie(BinOp, RemainingExpr) = parseBinOpToken(RemainingExpr);
647 if (BinOp == BinOpToken::Invalid)
650 // This is a recognized bin-op. Evaluate the RHS, then evaluate the binop.
660 EvalResult ThisResult(computeBinOpResult(BinOp, LHSResult, RHSResult));
    [all...]
  /external/llvm/lib/IR/
ConstantRange.cpp 169 ConstantRange::makeGuaranteedNoWrapRegion(Instruction::BinaryOps BinOp,
183 assert(BinOp >= Instruction::BinaryOpsBegin &&
184 BinOp < Instruction::BinaryOpsEnd && "Binary operators only!");
192 if (BinOp != Instruction::Add)
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instructions.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 245 // Make sure it's a declared binop.
424 // If this is a binop, find its precedence.
428 // If this is a binop that binds at least as tightly as the current binop,
433 // Okay, we know this is a binop.
434 int BinOp = CurTok;
435 getNextToken(); // eat binop
442 // If BinOp binds less tightly with RHS than the operator after RHS, let
453 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));

Completed in 496 milliseconds

1 2 34 5 6 7 8 910