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