Lines Matching defs:ByteShift
12199 uint64_t ByteShift = BitShift / 8;
12201 uint64_t NewIndex = (Index + ByteShift) % ConcatSizeInBytes;
12226 uint64_t ByteShift = BitShift / 8;
12227 // The dest of shift will have good [0 : (BytesProvided - ByteShift)] bytes.
12230 // the SRL is Index + ByteShift
12231 return BytesProvided - ByteShift > Index
12233 Index + ByteShift)
12248 uint64_t ByteShift = BitShift / 8;
12253 // of interest is Index - ByteShift of the src
12254 return Index < ByteShift
12256 : calculateByteProvider(Op.getOperand(0), Index - ByteShift,