Lines Matching refs:ShAmt
271 unsigned ShAmt = Amt->getZExtValue(); in ExtractConstantBytes() local
273 if ((ShAmt & 7) != 0) in ExtractConstantBytes()
275 ShAmt >>= 3; in ExtractConstantBytes()
278 if (ByteStart >= CSize-ShAmt) in ExtractConstantBytes()
282 if (ByteStart+ByteSize+ShAmt <= CSize) in ExtractConstantBytes()
283 return ExtractConstantBytes(CE->getOperand(0), ByteStart+ShAmt, ByteSize); in ExtractConstantBytes()
293 unsigned ShAmt = Amt->getZExtValue(); in ExtractConstantBytes() local
295 if ((ShAmt & 7) != 0) in ExtractConstantBytes()
297 ShAmt >>= 3; in ExtractConstantBytes()
300 if (ByteStart+ByteSize <= ShAmt) in ExtractConstantBytes()
304 if (ByteStart >= ShAmt) in ExtractConstantBytes()
305 return ExtractConstantBytes(CE->getOperand(0), ByteStart-ShAmt, ByteSize); in ExtractConstantBytes()