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