HomeSort by relevance Sort by last modified time
    Searched defs:isIntegerTy (Results 1 - 8 of 8) sorted by null

  /external/compiler-rt/lib/ubsan/
ubsan_value.h 117 bool isIntegerTy() const { return getKind() == TK_Integer; }
119 return isIntegerTy() && (TypeInfo & 1);
122 return isIntegerTy() && !(TypeInfo & 1);
125 CHECK(isIntegerTy());
153 CHECK(getType().isIntegerTy());
  /external/swiftshader/third_party/LLVM/include/llvm/
Type.h 159 /// isIntegerTy - True if this is an instance of IntegerType.
161 bool isIntegerTy() const { return ID == IntegerTyID; }
163 /// isIntegerTy - Return true if this is an IntegerType of the given width.
164 bool isIntegerTy(unsigned Bitwidth) const;
  /external/llvm/include/llvm/IR/
Type.h 193 bool isIntegerTy() const { return getTypeID() == IntegerTyID; }
196 bool isIntegerTy(unsigned Bitwidth) const;
199 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); }
238 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() ||
  /external/llvm/lib/IR/
Type.cpp 50 bool Type::isIntegerTy(unsigned Bitwidth) const {
51 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
578 if (!V->getType()->getScalarType()->isIntegerTy(32))
651 return ElemTy->isIntegerTy() || ElemTy->isFloatingPointTy() ||
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Type.cpp 49 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
50 bool Type::isIntegerTy(unsigned Bitwidth) const {
51 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
58 if (isIntegerTy())
62 return cast<VectorType>(this)->getElementType()->isIntegerTy();
172 if (this->isIntegerTy())
596 if (V->getType()->isIntegerTy(32))
603 return V->getType()->isIntegerTy();
667 return ElemTy->isIntegerTy() || ElemTy->isFloatingPointTy();
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Type.h 197 bool isIntegerTy() const { return getTypeID() == IntegerTyID; }
200 bool isIntegerTy(unsigned Bitwidth) const;
203 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); }
208 return getScalarType()->isIntegerTy(BitWidth);
212 bool isIntOrPtrTy() const { return isIntegerTy() || isPointerTy(); }
251 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() ||
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Type.cpp 57 bool Type::isIntegerTy(unsigned Bitwidth) const {
58 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
609 return ElemTy->isIntegerTy() || ElemTy->isFloatingPointTy() ||
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Type.h 195 bool isIntegerTy() const { return getTypeID() == IntegerTyID; }
198 bool isIntegerTy(unsigned Bitwidth) const;
201 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); }
240 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() ||

Completed in 1339 milliseconds