Lines Matching defs:BitWidth
303 unsigned BitWidth, bool IsSigned) const {
304 if (getCharWidth() == BitWidth)
306 if (getShortWidth() == BitWidth)
308 if (getIntWidth() == BitWidth)
310 if (getLongWidth() == BitWidth)
312 if (getLongLongWidth() == BitWidth)
317 TargetInfo::IntType TargetInfo::getLeastIntTypeByWidth(unsigned BitWidth,
319 if (getCharWidth() >= BitWidth)
321 if (getShortWidth() >= BitWidth)
323 if (getIntWidth() >= BitWidth)
325 if (getLongWidth() >= BitWidth)
327 if (getLongLongWidth() >= BitWidth)
332 FloatModeKind TargetInfo::getRealTypeByWidth(unsigned BitWidth,
334 if (getHalfWidth() == BitWidth)
336 if (getFloatWidth() == BitWidth)
338 if (getDoubleWidth() == BitWidth)
341 switch (BitWidth) {