HomeSort by relevance Sort by last modified time
    Searched refs:BinOp (Results 51 - 75 of 187) sorted by null

1 23 4 5 6 7 8

  /prebuilts/clang/host/darwin-x86/clang-3977809/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/darwin-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-3957855/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-3960126/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-3977809/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-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...]
  /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));
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 89 (* If this is a binop, find its precedence. *)
93 (* If this is a binop that binds at least as tightly as the current binop,
96 (* Eat the binop. *)
102 (* Okay, we know this is a binop. *)
106 (* If BinOp binds less tightly with rhs than the operator after
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 100 (* If this is a binop, find its precedence. *)
104 (* If this is a binop that binds at least as tightly as the current binop,
107 (* Eat the binop. *)
113 (* Okay, we know this is a binop. *)
117 (* If BinOp binds less tightly with rhs than the operator after
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 207 // Make sure it's a declared binop.
361 // If this is a binop, find its precedence.
365 // If this is a binop that binds at least as tightly as the current binop,
370 // Okay, we know this is a binop.
371 int BinOp = CurTok;
372 getNextToken(); // eat binop
378 // If BinOp binds less tightly with RHS than the operator after RHS, let
387 LHS = new BinaryExprAST(BinOp, LHS, RHS);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 235 // Make sure it's a declared binop.
405 // If this is a binop, find its precedence.
409 // If this is a binop that binds at least as tightly as the current binop,
414 // Okay, we know this is a binop.
415 int BinOp = CurTok;
416 getNextToken(); // eat binop
422 // If BinOp binds less tightly with RHS than the operator after RHS, let
431 LHS = new BinaryExprAST(BinOp, LHS, RHS);
592 return Builder.CreateCall(F, Ops, "binop");
    [all...]

Completed in 584 milliseconds

1 23 4 5 6 7 8