Searched defs:DestWidth (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp456 unsigned DestWidth = DestType->getPrimitiveSizeInBits(); local
459 if ((VecWidth % DestWidth != 0) || (ShiftAmount % DestWidth != 0))
464 unsigned NumVecElts = VecWidth / DestWidth;
470 unsigned Elt = ShiftAmount / DestWidth;
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1609 unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); local
1611 if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0) {
1616 VecTy->getPrimitiveSizeInBits() / DestWidth);
1630 unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); local
1631 if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0 &&
1632 ShAmt->getZExtValue() % DestWidth == 0) {
1637 VecTy->getPrimitiveSizeInBits() / DestWidth);
1641 unsigned Elt = ShAmt->getZExtValue() / DestWidth;
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp839 unsigned DestWidth = TD.getTypeSizeInBits(AllocaType); local
856 SrcWidth = DestWidth;
876 APInt Mask(APInt::getLowBitsSet(DestWidth, SrcWidth));
877 if (ShAmt > 0 && (unsigned)ShAmt < DestWidth) {
880 } else if (ShAmt < 0 && (unsigned)-ShAmt < DestWidth) {
887 if (SrcWidth != DestWidth) {
888 assert(DestWidth > SrcWidth);
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp3365 static void parseModeAttrArg(Sema &S, StringRef Str, unsigned &DestWidth, argument
3373 DestWidth = 8;
3376 DestWidth = 16;
3379 DestWidth = 32;
3382 DestWidth = 64;
3385 DestWidth = 96;
3388 DestWidth = 128;
3397 DestWidth = 0;
3404 DestWidth = S.Context.getTargetInfo().getRegisterWidth();
3406 DestWidth
3445 unsigned DestWidth = 0; local
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp8735 QualType ASTContext::getIntTypeForBitwidth(unsigned DestWidth, argument
8737 TargetInfo::IntType Ty = getTargetInfo().getIntTypeByWidth(DestWidth, Signed);
8739 if (!QualTy && DestWidth == 128)
8747 QualType ASTContext::getRealTypeForBitwidth(unsigned DestWidth) const {
8748 TargetInfo::RealType Ty = getTargetInfo().getRealTypeByWidth(DestWidth);
H A DExprConstant.cpp1660 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); local
1664 Result = APSInt(DestWidth, !DestSigned);
1687 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); local
1691 Result = Result.extOrTrunc(DestWidth);
9637 unsigned DestWidth = Ctx.getIntWidth(E->getType()); local
9639 APSInt IgnoredVal(DestWidth, !DestSigned);

Completed in 391 milliseconds