Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DAPInt.h546 static APInt getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument
547 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()