Home | History | Annotate | Download | only in Basic

Lines Matching refs:BitWidth

183     unsigned BitWidth, bool IsSigned) const {
184 if (getCharWidth() == BitWidth)
186 if (getShortWidth() == BitWidth)
188 if (getIntWidth() == BitWidth)
190 if (getLongWidth() == BitWidth)
192 if (getLongLongWidth() == BitWidth)
197 TargetInfo::IntType TargetInfo::getLeastIntTypeByWidth(unsigned BitWidth,
199 if (getCharWidth() >= BitWidth)
201 if (getShortWidth() >= BitWidth)
203 if (getIntWidth() >= BitWidth)
205 if (getLongWidth() >= BitWidth)
207 if (getLongLongWidth() >= BitWidth)
212 TargetInfo::RealType TargetInfo::getRealTypeByWidth(unsigned BitWidth) const {
213 if (getFloatWidth() == BitWidth)
215 if (getDoubleWidth() == BitWidth)
218 switch (BitWidth) {