Lines Matching full:numbytes
1998 unsigned DestReg, unsigned BaseReg, int NumBytes,
2001 if (NumBytes == 0 && DestReg != BaseReg) {
2009 bool isSub = NumBytes < 0;
2010 if (isSub) NumBytes = -NumBytes;
2012 while (NumBytes) {
2013 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
2014 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
2018 NumBytes &= ~ThisVal;
2034 unsigned NumBytes) {
2061 if (NumBytes % (IsVFPPushPop ? 8 : 4) != 0)
2073 RegsNeeded = NumBytes / 8;
2076 RegsNeeded = NumBytes / 4;
2089 // Now try to find enough space in the reglist to allocate NumBytes.