Searched defs:isIntegerTy (Results 1 - 3 of 3) sorted by relevance

/external/compiler-rt/lib/ubsan/
H A Dubsan_value.h124 bool isIntegerTy() const { return getKind() == TK_Integer; } function in class:__ubsan::TypeDescriptor
126 return isIntegerTy() && (TypeInfo & 1);
129 return isIntegerTy() && !(TypeInfo & 1);
132 CHECK(isIntegerTy());
160 CHECK(getType().isIntegerTy());
/external/llvm/include/llvm/IR/
H A DType.h191 /// isIntegerTy - True if this is an instance of IntegerType.
193 bool isIntegerTy() const { return getTypeID() == IntegerTyID; } function in class:llvm::Type
195 /// isIntegerTy - Return true if this is an IntegerType of the given width.
196 bool isIntegerTy(unsigned Bitwidth) const;
201 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); }
251 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() ||
/external/llvm/lib/IR/
H A DType.cpp57 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
58 bool Type::isIntegerTy(unsigned Bitwidth) const { function in class:Type
59 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
646 if (!V->getType()->getScalarType()->isIntegerTy(32))
719 return ElemTy->isIntegerTy() || ElemTy->isFloatingPointTy() ||

Completed in 378 milliseconds