Lines Matching refs:BitWidth
179 unsigned BitWidth, bool IsSigned) const { in getIntTypeByWidth() argument
180 if (getCharWidth() == BitWidth) in getIntTypeByWidth()
182 if (getShortWidth() == BitWidth) in getIntTypeByWidth()
184 if (getIntWidth() == BitWidth) in getIntTypeByWidth()
186 if (getLongWidth() == BitWidth) in getIntTypeByWidth()
188 if (getLongLongWidth() == BitWidth) in getIntTypeByWidth()
193 TargetInfo::IntType TargetInfo::getLeastIntTypeByWidth(unsigned BitWidth, in getLeastIntTypeByWidth() argument
195 if (getCharWidth() >= BitWidth) in getLeastIntTypeByWidth()
197 if (getShortWidth() >= BitWidth) in getLeastIntTypeByWidth()
199 if (getIntWidth() >= BitWidth) in getLeastIntTypeByWidth()
201 if (getLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
203 if (getLongLongWidth() >= BitWidth) in getLeastIntTypeByWidth()
208 TargetInfo::RealType TargetInfo::getRealTypeByWidth(unsigned BitWidth) const { in getRealTypeByWidth()
209 if (getFloatWidth() == BitWidth) in getRealTypeByWidth()
211 if (getDoubleWidth() == BitWidth) in getRealTypeByWidth()
214 switch (BitWidth) { in getRealTypeByWidth()