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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1599 unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); local
1601 if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0) {
1606 VecTy->getPrimitiveSizeInBits() / DestWidth);
1620 unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); local
1621 if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0 &&
1622 ShAmt->getZExtValue() % DestWidth == 0) {
1627 VecTy->getPrimitiveSizeInBits() / DestWidth);
1631 unsigned Elt = ShAmt->getZExtValue() / DestWidth;
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp960 unsigned DestWidth = TD.getTypeSizeInBits(AllocaType); local
977 SrcWidth = DestWidth;
997 APInt Mask(APInt::getLowBitsSet(DestWidth, SrcWidth));
998 if (ShAmt > 0 && (unsigned)ShAmt < DestWidth) {
1001 } else if (ShAmt < 0 && (unsigned)-ShAmt < DestWidth) {
1008 if (SrcWidth != DestWidth) {
1009 assert(DestWidth > SrcWidth);
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp3218 unsigned DestWidth = 0; local
3224 case 'Q': DestWidth = 8; break;
3225 case 'H': DestWidth = 16; break;
3226 case 'S': DestWidth = 32; break;
3227 case 'D': DestWidth = 64; break;
3228 case 'X': DestWidth = 96; break;
3229 case 'T': DestWidth = 128; break;
3237 DestWidth = 0;
3244 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
3246 DestWidth
[all...]
/external/clang/lib/AST/
H A DExprConstant.cpp1171 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); local
1175 Result = APSInt(DestWidth, !DestSigned);
1198 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); local
1202 Result = Result.extOrTrunc(DestWidth);
6699 unsigned DestWidth = Ctx.getIntWidth(E->getType()); local
6701 APSInt IgnoredVal(DestWidth, !DestSigned);

Completed in 538 milliseconds