Lines Matching refs:BitWidth
284 unsigned BitWidth, bool IsSigned) const { in getIntTypeByWidth() argument
285 if (getCharWidth() == BitWidth) in getIntTypeByWidth()
287 if (getShortWidth() == BitWidth) in getIntTypeByWidth()
289 if (getIntWidth() == BitWidth) in getIntTypeByWidth()
291 if (getLongWidth() == BitWidth) in getIntTypeByWidth()
293 if (getLongLongWidth() == BitWidth) in getIntTypeByWidth()
298 TargetInfo::IntType TargetInfo::getLeastIntTypeByWidth(unsigned BitWidth, in getLeastIntTypeByWidth() argument
300 if (getCharWidth() >= BitWidth) in getLeastIntTypeByWidth()
302 if (getShortWidth() >= BitWidth) in getLeastIntTypeByWidth()
304 if (getIntWidth() >= BitWidth) in getLeastIntTypeByWidth()
306 if (getLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
308 if (getLongLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
313 FloatModeKind TargetInfo::getRealTypeByWidth(unsigned BitWidth, in getRealTypeByWidth() argument
315 if (getHalfWidth() == BitWidth) in getRealTypeByWidth()
317 if (getFloatWidth() == BitWidth) in getRealTypeByWidth()
319 if (getDoubleWidth() == BitWidth) in getRealTypeByWidth()
322 switch (BitWidth) { in getRealTypeByWidth()