Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DAPInt.cpp578 APInt APInt::getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument
579 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()
581 APInt Val = V.zextOrSelf(NewLen); in getSplat()
582 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
DAPInt.h674 static APInt getSplat(unsigned NewLen, const APInt &V);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
DLegalizerHelper.cpp5682 unsigned NewLen = PowerOf2Ceil(Len); in lowerBitCount() local
5683 for (unsigned i = 0; (1U << i) <= (NewLen / 2); ++i) { in lowerBitCount()