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