Searched refs:NewLen (Results 1 – 1 of 1) sorted by relevance
546 static APInt getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument547 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()549 APInt Val = V.zextOrSelf(NewLen); in getSplat()550 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()