Searched defs:DstBitSize (Results 1 - 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DConstantFolding.cpp154 unsigned DstBitSize = DstEltTy->getPrimitiveSizeInBits(); local
162 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1);
168 ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize;
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp205 unsigned DstBitSize = DL.getTypeSizeInBits(DstEltTy); local
213 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1);
219 ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize;
224 IntegerType *DstIntTy = Type::getIntNTy(C->getContext(), DstBitSize);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstructions.cpp2611 unsigned DstBitSize = DstTy->getScalarSizeInBits(); local
2626 SrcLength == DstLength && SrcBitSize > DstBitSize;
2629 SrcLength == DstLength && SrcBitSize < DstBitSize;
2632 SrcLength == DstLength && SrcBitSize < DstBitSize;
2635 SrcLength == DstLength && SrcBitSize > DstBitSize;
2638 SrcLength == DstLength && SrcBitSize < DstBitSize;
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5106 unsigned DstBitSize = DstEltVT.getSizeInBits(); local
5110 if (SrcBitSize == DstBitSize) {
5162 if (SrcBitSize < DstBitSize) {
5163 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
5169 APInt NewBits = APInt(DstBitSize, 0);
5179 zextOrTrunc(SrcBitSize).zext(DstBitSize);
5196 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
5212 APInt ThisVal = OpVal.trunc(DstBitSize);
5218 OpVal = OpVal.lshr(DstBitSize);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7648 unsigned DstBitSize = DstEltVT.getSizeInBits(); local
7652 if (SrcBitSize == DstBitSize) {
7700 if (SrcBitSize < DstBitSize) {
7701 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
7707 APInt NewBits = APInt(DstBitSize, 0);
7717 zextOrTrunc(SrcBitSize).zext(DstBitSize);
7732 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
7747 APInt ThisVal = OpVal.trunc(DstBitSize);
7749 OpVal = OpVal.lshr(DstBitSize);

Completed in 307 milliseconds