Lines Matching refs:BitWidth
259 unsigned BitWidth, bool IsSigned) const { in getIntTypeByWidth() argument
260 if (getCharWidth() == BitWidth) in getIntTypeByWidth()
262 if (getShortWidth() == BitWidth) in getIntTypeByWidth()
264 if (getIntWidth() == BitWidth) in getIntTypeByWidth()
266 if (getLongWidth() == BitWidth) in getIntTypeByWidth()
268 if (getLongLongWidth() == BitWidth) in getIntTypeByWidth()
273 TargetInfo::IntType TargetInfo::getLeastIntTypeByWidth(unsigned BitWidth, in getLeastIntTypeByWidth() argument
275 if (getCharWidth() >= BitWidth) in getLeastIntTypeByWidth()
277 if (getShortWidth() >= BitWidth) in getLeastIntTypeByWidth()
279 if (getIntWidth() >= BitWidth) in getLeastIntTypeByWidth()
281 if (getLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
283 if (getLongLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
288 FloatModeKind TargetInfo::getRealTypeByWidth(unsigned BitWidth, in getRealTypeByWidth() argument
290 if (getHalfWidth() == BitWidth) in getRealTypeByWidth()
292 if (getFloatWidth() == BitWidth) in getRealTypeByWidth()
294 if (getDoubleWidth() == BitWidth) in getRealTypeByWidth()
297 switch (BitWidth) { in getRealTypeByWidth()