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

/external/llvm/lib/Target/X86/Utils/
H A DX86ShuffleDecode.cpp201 unsigned HalfSize = VT.getVectorNumElements()/2; local
204 unsigned HalfBegin = ((Imm >> (l*4)) & 0x3) * HalfSize;
205 for (unsigned i = HalfBegin, e = HalfBegin+HalfSize; i != e; ++i)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6665 unsigned HalfSize = sz / 2; local
6666 APInt HighValue = SplatValue.lshr(HalfSize).trunc(HalfSize);
6667 APInt LowValue = SplatValue.trunc(HalfSize);
6668 APInt HighUndef = SplatUndef.lshr(HalfSize).trunc(HalfSize);
6669 APInt LowUndef = SplatUndef.trunc(HalfSize);
6673 MinSplatBits > HalfSize)
6679 sz = HalfSize;
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4244 unsigned HalfSize = NumElts/2; local
4245 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, 0)) {
4246 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, NumElts)) {
4251 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, NumElts)) {
4252 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, HalfSize)) {
4294 unsigned HalfSize = VT.getVectorNumElements()/2; local
4299 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Hal
4321 unsigned HalfSize = VT.getVectorNumElements()/2; local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp5643 unsigned HalfSize = EltSize / 2; local
5645 if (!isIntN(HalfSize, C->getSExtValue()))
5648 if (!isUIntN(HalfSize, C->getZExtValue()))

Completed in 170 milliseconds