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

1 2 3 4 56 7 8

  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Instructions.h 684 enum BinOp {
713 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
716 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
727 BinOp getOperation() const {
728 return static_cast<BinOp>(getSubclassDataFromInstruction() >> 5);
731 void setOperation(BinOp Operation) {
801 void Init(BinOp Operation, Value *Ptr, Value *Val,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
Instructions.h 684 enum BinOp {
713 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
716 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
727 BinOp getOperation() const {
728 return static_cast<BinOp>(getSubclassDataFromInstruction() >> 5);
731 void setOperation(BinOp Operation) {
801 void Init(BinOp Operation, Value *Ptr, Value *Val,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
Instructions.h 684 enum BinOp {
713 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
716 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
727 BinOp getOperation() const {
728 return static_cast<BinOp>(getSubclassDataFromInstruction() >> 5);
731 void setOperation(BinOp Operation) {
801 void Init(BinOp Operation, Value *Ptr, Value *Val,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
Instructions.h 684 enum BinOp {
713 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
716 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
727 BinOp getOperation() const {
728 return static_cast<BinOp>(getSubclassDataFromInstruction() >> 5);
731 void setOperation(BinOp Operation) {
801 void Init(BinOp Operation, Value *Ptr, Value *Val,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Instructions.h 684 enum BinOp {
713 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
716 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
727 BinOp getOperation() const {
728 return static_cast<BinOp>(getSubclassDataFromInstruction() >> 5);
731 void setOperation(BinOp Operation) {
801 void Init(BinOp Operation, Value *Ptr, Value *Val,
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 423 // Make sure it's a declared binop.
673 // If this is a binop, find its precedence.
677 // If this is a binop that binds at least as tightly as the current binop,
682 // Okay, we know this is a binop.
683 int BinOp = CurTok;
685 getNextToken(); // eat binop
692 // If BinOp binds less tightly with RHS than the operator after RHS, let
702 LHS = llvm::make_unique<BinaryExprAST>(BinLoc, BinOp, std::move(LHS),
975 return Builder.CreateCall(F, Ops, "binop");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 278 // Make sure it's a declared binop.
495 // If this is a binop, find its precedence.
499 // If this is a binop that binds at least as tightly as the current binop,
504 // Okay, we know this is a binop.
505 int BinOp = CurTok;
506 getNextToken(); // eat binop
512 // If BinOp binds less tightly with RHS than the operator after RHS, let
521 LHS = new BinaryExprAST(BinOp, LHS, RHS);
1079 return Builder.CreateCall(F, Ops, "binop");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 297 // Make sure it's a declared binop.
514 // If this is a binop, find its precedence.
518 // If this is a binop that binds at least as tightly as the current binop,
523 // Okay, we know this is a binop.
524 int BinOp = CurTok;
525 getNextToken(); // eat binop
531 // If BinOp binds less tightly with RHS than the operator after RHS, let
540 LHS = new BinaryExprAST(BinOp, LHS, RHS);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
LoopVectorize.cpp     [all...]
  /external/swiftshader/third_party/subzero/src/
IceConverter.cpp 345 const auto BinOp = cast<BinaryOperator>(Instr);
348 Ice::Variable *Dest = mapValueToIceVar(BinOp);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 135 Value *BinOp = nullptr;
137 BinOp = Builder->CreateAnd(NewLHS, NewRHS);
139 BinOp = Builder->CreateOr(NewLHS, NewRHS);
141 BinOp = Builder->CreateXor(NewLHS, NewRHS);
144 return Builder->CreateCall(F, BinOp);
    [all...]
InstCombineCompares.cpp     [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Python-ast.c 744 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
    [all...]
symtable.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Python-ast.c 727 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
    [all...]
symtable.c     [all...]
  /external/python/cpython2/Python/
Python-ast.c 744 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
    [all...]
symtable.c     [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
AutoUpgrade.cpp 243 AtomicRMWInst::BinOp Op;
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 519 // If we have a binary expr, dispatch to the subcode of the binop. A smart
522 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(S)) {
523 switch (BinOp->getOpcode()) {
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
RecursiveASTVisitor.h 538 // If we have a binary expr, dispatch to the subcode of the binop. A smart
541 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(S)) {
542 switch (BinOp->getOpcode()) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
RecursiveASTVisitor.h 538 // If we have a binary expr, dispatch to the subcode of the binop. A smart
541 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(S)) {
542 switch (BinOp->getOpcode()) {
    [all...]

Completed in 1498 milliseconds

1 2 3 4 56 7 8