Lines Matching refs:BitWidth
231 unsigned BitWidth, bool IsSigned) const { in getIntTypeByWidth() argument
232 if (getCharWidth() == BitWidth) in getIntTypeByWidth()
234 if (getShortWidth() == BitWidth) in getIntTypeByWidth()
236 if (getIntWidth() == BitWidth) in getIntTypeByWidth()
238 if (getLongWidth() == BitWidth) in getIntTypeByWidth()
240 if (getLongLongWidth() == BitWidth) in getIntTypeByWidth()
245 TargetInfo::IntType TargetInfo::getLeastIntTypeByWidth(unsigned BitWidth, in getLeastIntTypeByWidth() argument
247 if (getCharWidth() >= BitWidth) in getLeastIntTypeByWidth()
249 if (getShortWidth() >= BitWidth) in getLeastIntTypeByWidth()
251 if (getIntWidth() >= BitWidth) in getLeastIntTypeByWidth()
253 if (getLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
255 if (getLongLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
260 TargetInfo::RealType TargetInfo::getRealTypeByWidth(unsigned BitWidth) const { in getRealTypeByWidth()
261 if (getFloatWidth() == BitWidth) in getRealTypeByWidth()
263 if (getDoubleWidth() == BitWidth) in getRealTypeByWidth()
266 switch (BitWidth) { in getRealTypeByWidth()