Lines Matching defs:BitWidth
287 unsigned BitWidth, bool IsSigned) const {
288 if (getCharWidth() == BitWidth)
290 if (getShortWidth() == BitWidth)
292 if (getIntWidth() == BitWidth)
294 if (getLongWidth() == BitWidth)
296 if (getLongLongWidth() == BitWidth)
301 TargetInfo::IntType TargetInfo::getLeastIntTypeByWidth(unsigned BitWidth,
303 if (getCharWidth() >= BitWidth)
305 if (getShortWidth() >= BitWidth)
307 if (getIntWidth() >= BitWidth)
309 if (getLongWidth() >= BitWidth)
311 if (getLongLongWidth() >= BitWidth)
316 FloatModeKind TargetInfo::getRealTypeByWidth(unsigned BitWidth,
318 if (getHalfWidth() == BitWidth)
320 if (getFloatWidth() == BitWidth)
322 if (getDoubleWidth() == BitWidth)
325 switch (BitWidth) {