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

/external/compiler-rt/lib/ubsan/
H A Dubsan_value.h117 bool isIntegerTy() const { return getKind() == TK_Integer; } function in class:__ubsan::TypeDescriptor
119 return isIntegerTy() && (TypeInfo & 1);
122 return isIntegerTy() && !(TypeInfo & 1);
125 CHECK(isIntegerTy());
153 CHECK(getType().isIntegerTy());
/external/swiftshader/third_party/LLVM/include/llvm/
H A DType.h159 /// isIntegerTy - True if this is an instance of IntegerType.
161 bool isIntegerTy() const { return ID == IntegerTyID; } function in class:llvm::Type
163 /// isIntegerTy - Return true if this is an IntegerType of the given width.
164 bool isIntegerTy(unsigned Bitwidth) const;
/external/llvm/include/llvm/IR/
H A DType.h193 bool isIntegerTy() const { return getTypeID() == IntegerTyID; } function in class:llvm::Type
196 bool isIntegerTy(unsigned Bitwidth) const;
199 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); }
238 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() ||
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DType.h195 bool isIntegerTy() const { return getTypeID() == IntegerTyID; } function in class:llvm::Type
198 bool isIntegerTy(unsigned Bitwidth) const;
201 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); }
240 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() ||
/external/llvm/lib/IR/
H A DType.cpp50 bool Type::isIntegerTy(unsigned Bitwidth) const { function in class:Type
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/
H A DType.cpp49 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
50 bool Type::isIntegerTy(unsigned Bitwidth) const { function in class:Type
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();

Completed in 263 milliseconds