Lines Matching refs:BitWidth
250 unsigned BitWidth, bool IsSigned) const { in getIntTypeByWidth() argument
251 if (getCharWidth() == BitWidth) in getIntTypeByWidth()
253 if (getShortWidth() == BitWidth) in getIntTypeByWidth()
255 if (getIntWidth() == BitWidth) in getIntTypeByWidth()
257 if (getLongWidth() == BitWidth) in getIntTypeByWidth()
259 if (getLongLongWidth() == BitWidth) in getIntTypeByWidth()
264 TargetInfo::IntType TargetInfo::getLeastIntTypeByWidth(unsigned BitWidth, in getLeastIntTypeByWidth() argument
266 if (getCharWidth() >= BitWidth) in getLeastIntTypeByWidth()
268 if (getShortWidth() >= BitWidth) in getLeastIntTypeByWidth()
270 if (getIntWidth() >= BitWidth) in getLeastIntTypeByWidth()
272 if (getLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
274 if (getLongLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
279 TargetInfo::RealType TargetInfo::getRealTypeByWidth(unsigned BitWidth, in getRealTypeByWidth() argument
281 if (getFloatWidth() == BitWidth) in getRealTypeByWidth()
283 if (getDoubleWidth() == BitWidth) in getRealTypeByWidth()
286 switch (BitWidth) { in getRealTypeByWidth()