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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1605 unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); local
1607 if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0) {
1612 VecTy->getPrimitiveSizeInBits() / DestWidth);
1626 unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); local
1627 if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0 &&
1628 ShAmt->getZExtValue() % DestWidth == 0) {
1633 VecTy->getPrimitiveSizeInBits() / DestWidth);
1637 unsigned Elt = ShAmt->getZExtValue() / DestWidth;
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp844 unsigned DestWidth = TD.getTypeSizeInBits(AllocaType); local
861 SrcWidth = DestWidth;
881 APInt Mask(APInt::getLowBitsSet(DestWidth, SrcWidth));
882 if (ShAmt > 0 && (unsigned)ShAmt < DestWidth) {
885 } else if (ShAmt < 0 && (unsigned)-ShAmt < DestWidth) {
892 if (SrcWidth != DestWidth) {
893 assert(DestWidth > SrcWidth);
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2675 unsigned DestWidth = 0; local
2681 case 'Q': DestWidth = 8; break;
2682 case 'H': DestWidth = 16; break;
2683 case 'S': DestWidth = 32; break;
2684 case 'D': DestWidth = 64; break;
2685 case 'X': DestWidth = 96; break;
2686 case 'T': DestWidth = 128; break;
2694 DestWidth = 0;
2701 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
2703 DestWidth
[all...]
/external/clang/lib/AST/
H A DExprConstant.cpp1173 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); local
1177 Result = APSInt(DestWidth, !DestSigned);
1200 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); local
1204 Result = Result.extOrTrunc(DestWidth);
6737 unsigned DestWidth = Ctx.getIntWidth(E->getType()); local
6739 APSInt IgnoredVal(DestWidth, !DestSigned);

Completed in 79 milliseconds