HomeSort by relevance Sort by last modified time
    Searched defs:isBinaryOp (Results 1 - 25 of 34) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/include/llvm/
Instruction.h 86 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
96 static inline bool isBinaryOp(unsigned Opcode) {
  /external/llvm/include/llvm/IR/
Instruction.h 106 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
117 static inline bool isBinaryOp(unsigned Opcode) {
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Instruction.h 115 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
126 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Instruction.h 121 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
132 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
Instruction.h 125 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
136 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
Instruction.h 125 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
136 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
Instruction.h 129 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
140 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
Instruction.h 129 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
140 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
Instruction.h 129 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
140 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
Instruction.h 129 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
140 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Instruction.h 121 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
132 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/IR/
Instruction.h 125 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
136 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/IR/
Instruction.h 125 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
136 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/IR/
Instruction.h 129 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
140 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
Instruction.h 129 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
140 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
Instruction.h 129 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
140 static inline bool isBinaryOp(unsigned Opcode) {
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
Instruction.h 129 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
140 static inline bool isBinaryOp(unsigned Opcode) {
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 256 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
259 assert(isUnaryOp() || isBinaryOp());
1049 if (P.isBinaryOp())
1082 if (P.isBinaryOp())
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 256 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
259 assert(isUnaryOp() || isBinaryOp());
1049 if (P.isBinaryOp())
1082 if (P.isBinaryOp())
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 256 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
259 assert(isUnaryOp() || isBinaryOp());
1049 if (P.isBinaryOp())
1082 if (P.isBinaryOp())
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 257 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
260 assert(isUnaryOp() || isBinaryOp());
1045 if (P.isBinaryOp())
1078 if (P.isBinaryOp())
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 272 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
275 assert(isUnaryOp() || isBinaryOp());
1067 if (P.isBinaryOp())
1100 if (P.isBinaryOp())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 236 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
239 assert(isUnaryOp() || isBinaryOp());
892 if (P.isBinaryOp())
920 if (P.isBinaryOp())
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 256 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
259 assert(isUnaryOp() || isBinaryOp());
1050 if (P.isBinaryOp())
1086 if (P.isBinaryOp())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 253 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
256 assert(isUnaryOp() || isBinaryOp());
1045 if (P.isBinaryOp())
1078 if (P.isBinaryOp())
    [all...]

Completed in 907 milliseconds

1 2