HomeSort by: relevance | last modified time | path
    Searched defs:DestWidth (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 240 unsigned DestWidth = DestTy->getPrimitiveSizeInBits();
241 unsigned ShAmt = Chunk * DestWidth;
263 Type *DestIntTy = IntegerType::getIntNTy(Scalar->getContext(), DestWidth);
InstCombineCasts.cpp 497 unsigned DestWidth = DestType->getPrimitiveSizeInBits();
500 if ((VecWidth % DestWidth != 0) || (ShiftAmount % DestWidth != 0))
505 unsigned NumVecElts = VecWidth / DestWidth;
511 unsigned Elt = ShiftAmount / DestWidth;
733 unsigned DestWidth = DestTy->getScalarSizeInBits();
755 // DestWidth * 2, which won't allow removing the truncate, but reducing the
759 if (DestWidth * 2 < SrcWidth) {
787 if (DestWidth == 1) {
825 unsigned MaxShiftAmt = SrcWidth - std::max(DestWidth, AWidth)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp 4071 static void parseModeAttrArg(Sema &S, StringRef Str, unsigned &DestWidth,
4080 DestWidth = 8;
4083 DestWidth = 16;
4086 DestWidth = 32;
4089 DestWidth = 64;
4092 DestWidth = 96;
4096 DestWidth = Str[1] == 'I' ? 0 : 128;
4100 DestWidth = 128;
4109 DestWidth = 0;
4116 DestWidth = S.Context.getTargetInfo().getRegisterWidth()
    [all...]

Completed in 37 milliseconds