Searched refs:NewLen (Results 1 – 4 of 4) sorted by relevance
550 static APInt getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument551 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()553 APInt Val = V.zextOrSelf(NewLen); in getSplat()554 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
577 APInt APInt::getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument578 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()580 APInt Val = V.zextOrSelf(NewLen); in getSplat()581 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
671 static APInt getSplat(unsigned NewLen, const APInt &V);
3769 unsigned NewLen = PowerOf2Ceil(Len); in lowerBitCount() local3770 for (unsigned i = 0; (1U << i) <= (NewLen / 2); ++i) { in lowerBitCount()