Lines Matching refs:NumBytesPerElt
5821 unsigned NumBytesPerElt = NumBitsPerElt / 8; in getFauxShuffleMask() local
6060 unsigned DstByte = DstIdx * NumBytesPerElt; in getFauxShuffleMask()
6076 MinBytesPerElts = std::min(MinBytesPerElts, NumBytesPerElt); in getFauxShuffleMask()
6079 for (unsigned i = MinBytesPerElts; i < NumBytesPerElt; ++i) in getFauxShuffleMask()
6188 for (unsigned i = 0; i != NumSizeInBytes; i += NumBytesPerElt) in getFauxShuffleMask()
6189 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j) in getFauxShuffleMask()
6192 for (unsigned i = 0; i != NumSizeInBytes; i += NumBytesPerElt) in getFauxShuffleMask()
6193 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j) in getFauxShuffleMask()
6206 Offset = (X86ISD::VROTLI == Opcode ? NumBytesPerElt - Offset : Offset); in getFauxShuffleMask()
6208 int BaseIdx = i * NumBytesPerElt; in getFauxShuffleMask()
6209 for (int j = 0; j != (int)NumBytesPerElt; ++j) { in getFauxShuffleMask()
6210 Mask.push_back(BaseIdx + ((Offset + j) % NumBytesPerElt)); in getFauxShuffleMask()