Lines Matching defs:ByteShift
11876 uint64_t ByteShift = BitShift / 8;
11878 uint64_t NewIndex = (Index + ByteShift) % ConcatSizeInBytes;
11903 uint64_t ByteShift = BitShift / 8;
11904 // The dest of shift will have good [0 : (BytesProvided - ByteShift)] bytes.
11907 // the SRL is Index + ByteShift
11908 return BytesProvided - ByteShift > Index
11910 Index + ByteShift)
11925 uint64_t ByteShift = BitShift / 8;
11930 // of interest is Index - ByteShift of the src
11931 return Index < ByteShift
11933 : calculateByteProvider(Op.getOperand(0), Index - ByteShift,