Lines Matching defs:Elt
107 Constant *Elt = CV->getOperand(I);
108 std::optional<APInt> SubBits = extractConstantBits(Elt);
171 if (Constant *Elt = CV->getAggregateElement(Idx)) {
172 if (isa<UndefValue>(Elt))
175 if (!Sequence[SplatIdx] || Sequence[SplatIdx] == Elt) {
176 Sequence[SplatIdx] = Elt;
308 APInt Elt = Bits->extractBits(DstEltBitWidth, I * DstEltBitWidth);
309 if ((IsSExt && Elt.getSignificantBits() > SrcEltBitWidth) ||
310 (!IsSExt && Elt.getActiveBits() > SrcEltBitWidth))
312 TruncBits.insertBits(Elt.trunc(SrcEltBitWidth), I * SrcEltBitWidth);