Lines Matching refs:Element
77 uint64_t Element = APElt.getLoBits(8).getZExtValue();
80 // If the high bit (7) of the byte is set, the element is zeroed.
81 if (Element & (1 << 7))
85 int Index = Base + (Element & 0xf);
123 // Support any element type from byte up to element size.
148 uint64_t Element = cast<ConstantInt>(COp)->getZExtValue();
150 Index += (Element >> 1) & 0x1;
152 Index += Element & 0x3;
176 // Support any element type from byte up to element size.
316 APInt Element = cast<ConstantInt>(COp)->getValue();
317 Element = Element.getLoBits(EltMaskSize);
318 ShuffleMask.push_back(Element.getZExtValue());
327 uint64_t Element = cast<ConstantInt>(C)->getZExtValue();
329 Element &= (1 << NumElements) - 1;
331 ShuffleMask.push_back(Element);
349 APInt Element = cast<ConstantInt>(COp)->getValue();
350 Element = Element.getLoBits(EltMaskSize);
351 ShuffleMask.push_back(Element.getZExtValue());