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