Home
last modified time | relevance | path

Searched refs:NewLen (Results 1 – 1 of 1) sorted by relevance

/freebsd-9-stable/contrib/llvm/include/llvm/ADT/
DAPInt.h542 static APInt getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument
543 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()