HomeSort by relevance Sort by last modified time
    Searched defs:isIntegerTy (Results 1 - 3 of 3) 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/llvm/include/llvm/IR/
Type.h 184 /// isIntegerTy - True if this is an instance of IntegerType.
186 bool isIntegerTy() const { return getTypeID() == IntegerTyID; }
188 /// isIntegerTy - Return true if this is an IntegerType of the given width.
189 bool isIntegerTy(unsigned Bitwidth) const;
194 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); }
244 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() ||
  /external/llvm/lib/IR/
Type.cpp 52 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
53 bool Type::isIntegerTy(unsigned Bitwidth) const {
54 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
650 if (!V->getType()->getScalarType()->isIntegerTy(32))
723 return ElemTy->isIntegerTy() || ElemTy->isFloatingPointTy() ||

Completed in 170 milliseconds